Skip to main content
Participant
December 17, 2019
Question

Attaching a single sheet PDF to the back of multiple pdf sheets

  • December 17, 2019
  • 1 reply
  • 281 views

Part of my job is printing invoices. I receive a PDF file of  anywhere from 10 - 2,000 single sided invoices. These are printed on the front of a pre-printed back side which is identical for each invoice.

 

My question is, can I somehow impose a PDF of this back side to the PDF file of 10 - 2,000 single sided invoices. In other words, rather than pre-printing the back sides I would be printing BOTH sides. I need the single back side to be duplicated 10 - 2,000 times.

 

Steve

This topic has been closed for replies.

1 reply

bebarth
Community Expert
Community Expert
December 17, 2019

Hi,

Yes it is possible with Acrobat Pro, writing a JavaScript action.

try that:

this.insertPages ({cPath: "pathofthefile.pdf"});
this.print({bUI: false});
this.deletePages(1);
this.dirty = false;

@+