This is a migrated thread and some comments may be shown as answers.

Export to PDF image quality

1 Answer 80 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
René
Top achievements
Rank 2
René asked on 17 Jul 2014, 08:54 PM
Hello,

I have a simple question. In this page http://demos.telerik.com/aspnet-ajax/scheduler/examples/pdfexport/defaultcs.aspx there is scheduler export to PDF. When file is exported, you can see that output quality is really low. It is jpg image in pdf, right? Is there any way how to choose output quality?

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());
        }

The is no encoder settings parameter (http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.save(v=vs.110).aspx). Any way how to do it? OR are there any plans to implement this?

Regards
René

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 21 Jul 2014, 12:56 PM
Hello René,

Yes indeed unfortunately this is a current limitation of the control - please excuse us for that. You can submit a feature request for this improvement at our feedback portal here.

Regards,
Plamen
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Scheduler
Asked by
René
Top achievements
Rank 2
Answers by
Plamen
Telerik team
Share this question
or