Scheduler component has feature "Export to PDF". When PDF is generated, there is image inside. But quality of this image is really poor.
Based on source code, there is method in SchedulerExporter.cs
private void ConvertBitmapToJpeg(Bitmap bmp)
{
var ms = new MemoryStream();
bmp.Save(ms, ImageFormat.Jpeg);
_gifArray.Add(ms.ToArray());
}
But there is no encoder settings parameter used (http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.save(v=vs.110).aspx). Please add a possibility to control output image quality.