Completed
Last Updated: 04 Feb 2015 19:00 by ADMIN
René
Created on: 21 Jul 2014 21:00
Category: Scheduler
Type: Feature Request
1
ADD: Export to PDF image quality
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.
1 comment
ADMIN
Telerik Admin
Posted on: 04 Feb 2015 19:00
Hi there,

I have good news that we just released a new RadClientExportManager control, which will enable you to export not only whole pages and specific HTML elements but also the Telerik UI for ASP.NET AJAX controls to PDF and image in a WYSIWYG manner. You can test it at http://demos.telerik.com/aspnet-ajax-beta/client-export-manager/applicationscenarios/export-radorgchart/defaultcs.aspx .

You can find more detailed information in the documentation at http://www.telerik.com/help/aspnet-ajax/clientexportmanager-overview.html .

The control will officially appear in the Q1 2015 release.