How to append a pdf file to the end of another pdf file in C++

  • Thread starter Thread starter Guest
  • Start date Start date
Shane said:
Please give me suggestions on how to append a pdf file to another pdf file in C++.


You would need to understand the PDF format.
Do you use any library to work with PDF files?

Schobi

--
(e-mail address removed) is never read
I'm Schobi at suespammers dot org

"Sometimes compilers are so much more reasonable than people."
Scott Meyers
 
What library should I use to append a pdf file to another? Would you please let me know in detail. Thanks!
 
Shane said:
What library should I use to append a pdf file to another?
Would you please let me know in detail. Thanks!

Sorry, I don't know much about the PDF
spec. There certainly is Adobe's Acrobat
API somewhere around this link:
partners.adobe.com/asn/acrobat/docs.jsp
You might find a others more here:
www.programming-x.com/programming/pdf.html
Then, there's the PDFlib
www.pdflib.com/
and the PDFEngine
www.callas.de/products/pdfengine/pdfengine.htm
which, AFAIK, cover just about everything
Adobe has without requiring Acrobat to
be present.

For more, you should ask google.

Schobi

--
(e-mail address removed) is never read
I'm Schobi at suespammers dot org

"Sometimes compilers are so much more reasonable than people."
Scott Meyers
 
Back
Top