PDF quality
Hi,
i use RB 11.07 + Delphi 2009
i export my report in PDF format and works ok...
but the quality of the image is bad...
how increment the quality of the pdf files ?
i use this code:
ReportCorrente.DeviceType := dtPDF;
ReportCorrente.ShowPrintDialog := False;
ReportCorrente.AllowPrintToFile := True;
ReportCorrente.PDFSettings.OpenPDFFile := False;
ReportCorrente.TextFileName := path + 'Temp\TempPDF.PDF';
ReportCorrente.Print;
thanks
Alessandro Romano
i use RB 11.07 + Delphi 2009
i export my report in PDF format and works ok...
but the quality of the image is bad...
how increment the quality of the pdf files ?
i use this code:
ReportCorrente.DeviceType := dtPDF;
ReportCorrente.ShowPrintDialog := False;
ReportCorrente.AllowPrintToFile := True;
ReportCorrente.PDFSettings.OpenPDFFile := False;
ReportCorrente.TextFileName := path + 'Temp\TempPDF.PDF';
ReportCorrente.Print;
thanks
Alessandro Romano
This discussion has been closed.
Comments
Try setting the PDFSettings.ScaleImages property to False.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
now is ok ...
thanks
Alessandro Romano