Easiest way to combine two or more PDF files in Delphi?

I would like to be able to combine multiple PDFs into one file using Delphi 2009. I would like to look at third party components for this.

Please do not suggest Gnostice products - I tried using them for this and have been disappointed so far.

+2


source to share


4 answers


The easiest way I've found is to use a free command line program, pdftk

http://www.pdftk.com/



Merge two or more PDFs into a new document:

pdftk 1.pdf 2.pdf 3.pdf cat output 123.pdf

+4


source


If you have an Adobe author / author, can you automate it? I believe there is an SDK ...



0


source


I would recommend Amyuni PDF Creator ActiveX for this task. There is a C # example in the SO answer I posted , the Delphi equivalent would be very similar.
Disclaimer: I am part of the development team for this product.

0


source


Use Debenu.Quick.PDF.Library there are methods for merging.

0


source







All Articles