I have two pdf or postscript files (I can work with either one). What I want to do is merge each page on top of the other so that page1 of document A will be combined with page 1 of document B to produce page 1 of the output document. This isn't something I necessarily want need to do programatically, although that would be helpful.

Any ideas?

link|improve this question

See a similar question here on Stackoverflow and why this is difficult. – Christian Lindig Feb 2 '09 at 19:39
that's not really related to this issue. OP says they can work directly with PDFs. It's not really difficult anyway. – danio Feb 4 '09 at 11:28
feedback

6 Answers

up vote 12 down vote accepted

You can do this with pdf files using the command line tool pdftk using the "stamp" or "background" option.

e.g.

pdftk file1.pdf background file2.pdf output combinedfile.pdf

This will only work with a one-page background file. If you have multiple pages, you can use the `multibackground' command instead.

link|improve this answer
Thanks, the background option worked for me :) Just to clarify, file1.pdf is placed above file2.pdf. Thanks! – AkiRoss Dec 29 '10 at 17:17
Worked perfectly. Thanks a bunch!!!! – Gnu Engineer Oct 27 '11 at 1:27
feedback

I had success solving this problem (PDF only and Python) by using pyPdf, specifically the mergePage operation.

From the docs:

# add page 4 from input1, but first add a watermark from another pdf:
page4 = input1.getPage(3)
watermark = PdfFileReader(file("watermark.pdf", "rb"))
page4.mergePage(watermark.getPage(0))

Should be enough to get the idea.

link|improve this answer
feedback

If you're dealing with only postscript, chances are the only 'pagebreaks' are the 'showpage' operator.
In which case you can simply grab the postscript data from the beginning of file one to the first instance of 'showpage', do the same with the other file, then concatenate these 2 chunks of postscript to create your new page.

If the 2 files are only one page, then you may be able to simply join the 2 files.

link|improve this answer
feedback

Aspose.Pdf.Kit with thePdfFileStamp class can do this, too. It works most of the time correctly.

link|improve this answer
feedback

You could convert both pdfs into images and overlay one on top of the other layer like.

A suitable graphics library that you could use this would work.

Watermark suggestion above has great potential too as long as you don't run into issues in your language or graphics/pdf library of choice.

link|improve this answer
feedback

I used the Mac OS tool PDFClerk Pro. I imported the PDF pages, then merged them with the option "Merge Pages (Stacked)." It really impressed me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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