Skip to main content
Known Participant
March 17, 2021
Question

overlay two PDF multiple pages

  • March 17, 2021
  • 2 replies
  • 1910 views

Is there a way of overlaying two PDF files both with multiple pages in acrobat?

Using Background or watermark is not an option because the background/watermark accepts only one page.

Example: Say I have PDF with 60 pages, layouted with logo, header footer page number etc. and I have a PDF with text, not logo, header. footer... I would like to overly them so that page one is ovelayed with page one, page 2 with page 2 etc.

Any ideas? Thanks, N

This topic has been closed for replies.

2 replies

Participant
March 20, 2021
Did I complete my direct deposit
try67
Community Expert
Community Expert
March 17, 2021

This can be done with a script.

For example:

 

var bgFilePath = "/C/Temp/BG.pdf";
for (var p=0; p<this.numPages; p++) {
	this.addWatermarkFromFile({cDIPath: bgFilePath, nSourcePage: p, nStart: p, bOnTop: false});
}