Different image quality in PDF
Hi,
When I print a report directly the image that is on it is printed in good
quality.
report1.ShowPrintDialog := True;
report1.DeviceType := dtScreen;
report1.Print;
I also used printing to a PDF-printer (from Broadgun). Here the output is
also good.
But when I export the report to PDF and print the PDF file the image-quality
is less.
report1.ShowPrintDialog := False;
report1.AllowPrintToFile := True;
report1.DeviceType := dtPDF;
report1.PDFSettings.Author := 'Myname;
report1.PDFSettings.Title := 'Mytitle';
report1.PDFSettings.Compressionleven := clNone;
report1.PDFSettings.OpenPDFFile := False;
report1.TextFileName := BestandNaamPDF;
report1.Print;
Is there a way to improve the quality of the image?
Regards,
Stef
When I print a report directly the image that is on it is printed in good
quality.
report1.ShowPrintDialog := True;
report1.DeviceType := dtScreen;
report1.Print;
I also used printing to a PDF-printer (from Broadgun). Here the output is
also good.
But when I export the report to PDF and print the PDF file the image-quality
is less.
report1.ShowPrintDialog := False;
report1.AllowPrintToFile := True;
report1.DeviceType := dtPDF;
report1.PDFSettings.Author := 'Myname;
report1.PDFSettings.Title := 'Mytitle';
report1.PDFSettings.Compressionleven := clNone;
report1.PDFSettings.OpenPDFFile := False;
report1.TextFileName := BestandNaamPDF;
report1.Print;
Is there a way to improve the quality of the image?
Regards,
Stef
This discussion has been closed.
Comments
Currently the built-in PDF export device will scale its images by default to
save space. Try setting the Report.PDFSettings.ScaleImages property to
False and see if that improves the image quality.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Thank you.
Setting the Report.PDFSettings.ScaleImages property to False improved the
image quality.
Regards,
Stef