Separate PDFs for multiple page printing

General usage of the PDF Printer.

Moderator: jr

Post Reply
ginc
Posts: 1
Joined: Fri Apr 02, 2010 7:56 pm

Separate PDFs for multiple page printing

Post by ginc »

Hi all,

Is there a way to create separate PDFs (one pdf for each page) of multipage document that is printed tp PDF printer?
bobandelaine
Posts: 4
Joined: Fri Mar 26, 2010 5:58 pm

Re: Separate PDFs for multiple page printing

Post by bobandelaine »

I do this, but I do it in a separate pass using a free software package called "pdftk" (PDF Toolkit).

Actually, I split based on certain report attributes (the report contains statements, and I split each statement into a separate file as a statement could be multiple pages). The program that creates the statements keeps track of the page numbers and creates a second file containing the information (starting and ending pages numbers, etc., for each specific statement). That second file is used to split the PDF into separate PDFs. It then emails (or attempts to email) each to the proper recipient.

Hope this helps. I'm afraid that I couldn't share my actual code on this, but I think someone with some degree of programming expertise could make something like this to work for them.

Just google "pdftk" and it'll take you to the right spot.
jr
Site Admin
Posts: 500
Joined: Sun Mar 26, 2006 12:28 pm

Re: Separate PDFs for multiple page printing

Post by jr »

You can add a <pageno> macro in the file name of the PDF.

Example C:\test-<pageno>.pdf

That will split the document. Each page will be a separate PDF file.

Regards,
Jacob
Post Reply