Devlar
07-19-2006, 03:33 AM
Hello,
I have a question. I have quite a few books scanned in landscape form (2 pages per scan, in PDF form). Is there any software or tutorials on how to split the pages? so that I have one page per page?
I don't think it's possible with Adobe Acrobat Pro (I checked all of its options for a clue). However, there seem to be third party tools that might do the trick. With Google I found:
Arts PDF Aerialist (http://www.artspdf.com/arts_pdf_aerialist.asp) - "Split by anything -- pages, page ranges, bookmarks and page marks, while retaining cross-document linking."
Evermap AutoSplit (http://www.evermap.com/autosplit.asp) - not sure if it can do what you need, but they have a trial.
VeryPDF PDF Split-Merge (http://www.verypdf.com/pdfpg/index.html) - ditto, not sure, but you can download it.
VeryPDF PDF Editor (http://www.verypdf.com/pdf-editor/index.html) - seems to be the big brother of above.
AccessPDF pdftk (http://www.accesspdf.com/pdftk/) - not sure if it can do it, but it's open-source.
Sorry for not being any more concrete. Maybe someone else can tell you more.
Devlar
07-20-2006, 10:10 PM
Thank you sir, I'll check them out and I'll report if they work.
Devlar
07-23-2006, 04:00 AM
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