vote up 1 vote down star

Using Perl, how can I combine or merge the sample PDF files into a single PDF file?

flag

0% accept rate

3 Answers

vote up 8 vote down

CAM::PDF can do this quite easily, and has a simple command-line front end to help. Note: I'm the author of that library. Example:

appendpdf.pl file1.pdf file2.pdf outfile.pdf
link|flag
vote up 4 vote down

Why do you need to do it from Perl? Chris has already mentioned CAM::PDF.

If you just need to merge them, pdftk (PDF ToolKit) works just fine. It's a simple command line:

pdftk file1.pdf file2.pdf cat output merged.pdf
link|flag
vote up 1 vote down

You can use the GhostScript utility pdf2ps to convert the PDFs into PostScript files, concatenate the PostScript files, and then use ps2pdf to convert the result back into a PDF.

link|flag
Why the downvote? At least leave a reason... – Adam Rosenfield Jan 7 at 6:21
I think it's because your solution doesn't use Perl. – Nathan Fellman Jan 7 at 19:00
Just because it's not a native Perl solutions doesn't mean it isn't any good. Perl can very easily invoke other utilities via the shell. – Adam Rosenfield Jan 8 at 2:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.