Does anyone know of a good way to split a pdf's pages down the middle into two new pages?
To be clear, I'm not trying to split out already existing pages from a pdf; I am trying to create two new pages from an existing single page.
|
Does anyone know of a good way to split a pdf's pages down the middle into two new pages? To be clear, I'm not trying to split out already existing pages from a pdf; I am trying to create two new pages from an existing single page. |
|||||
|
|
Try BRISS.
It lets you split each page into as many subpages as you want by defining regions with a GUI. It groups all similar pages into groups for you, so you can define regions for that group once. It's cross-platform, free, and open-source. |
|||
|
|
|
You can solve this with the help of Ghostscript. How to solve this with the help of Ghostscript......and for the fun of it, I've recently done it not with an input file featuring "double-up" pages, but one with "treble-ups". You can read the answer for this case here. Your case is even simpler. You seem to have something similar to this:
You want to create 1 PDF with 4 pages, each of which has the size of 421 pt x 595 pt. First StepLet's first extract the left sections from each of the input pages:
What did these parameters do? First, know that in PDF 1 inch == 72 points. Then the rest is:
Which result did the last command achieve? This one:
Second StepNext, the right sections:
Result:
Last StepNow we combine the pages into one file. We could do that with ghostscript as well, but we'll use
Done. Here is the desired result. 4 different pages, sized 421x595 pt. Result:
|
|||||||
|
|
If you can program, then you could use the iText library to manipulate PDFs (including converting, splitting, encrypting etc.) |
|||
|
|