While I find it somewhat odd, none of the programs do what I was looking for.
It's really odd that no one has created a utility that will take an image, break it in half and make two pages out of it.
That being said I did find a solution to my problem using Acrobat and Pdftk.
First take your landscape PDF and crop all pages. Save all the even pages as "even.pdf", save the odd pages as "odd.pdf"
Copy odd.pdf and even.pdf into the pdftk directory (unless you installed pdftk in the system32 dir)
Now go into the command console and into the pdftk directory.
First we have to expand the odd and even pages
pdftk A.pdf burst output %04d_A.pdf
pdftk B.pdf burst output %04d_B.pdf
Then we have to recombine the pages in order
pdftk *_?.pdf cat output combined.pdf
The only downside of this technqiue is that it creates a whole lot of temporary files
so if you had less than 1000 pages, just type in
del 0*.*
congrats, you've got a combined.pdf that separated your pages and put them in order.
Hopefully someone will find this useful
|