Export report to PDF

2

Use the pReport of the extinguished VTK Tools as report generator in Delphi XE7 . It has no native export to PDF . Today, I export to PDF by calling a virtual printer with parameters. But I do not want to have to install a virtual printer on every client.

How can I natively export a report to PDF ?

I even thought about how to create a virtual printer for PDF so I could create some similar algorithm ... but I did not find anything.

    
asked by anonymous 25.11.2016 / 12:43

1 answer

0

All comments were helpful, but the best way I found to export my reports to PFD was through the Synopse ( SynPDF ) library. It is very powerful and easy to use. In my case it is necessary to go through the elements of the generated report and mount PDF on hand, but if the report generator exports a MetaFile ( QuickReport does, for example), the job is much easier.

More information on the links below: Documentation
Ex. QuickReport

    
30.11.2016 / 14:01