Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Different image quality in PDF

edited January 2007 in General
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

Comments

  • edited January 2007
    Hi Stef,

    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

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited January 2007
    Hello Nico,

    Thank you.
    Setting the Report.PDFSettings.ScaleImages property to False improved the
    image quality.

    Regards,
    Stef
This discussion has been closed.