• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

overlay two PDF multiple pages

Explorer ,
Mar 17, 2021 Mar 17, 2021

Copy link to clipboard

Copied

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

TOPICS
Create PDFs , Edit and convert PDFs

Views

1.1K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 17, 2021 Mar 17, 2021

Copy link to clipboard

Copied

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});
}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 20, 2021 Mar 20, 2021

Copy link to clipboard

Copied

LATEST
Did I complete my direct deposit

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines