Splitting a PDF into PDFs of various sizes

adobe-acrobatdocumentspdf

I recently upgraded from Adobe Acrobat 6 to 9 and I can't seem to figure outhow to split a large PDF into individual PDFs of various sizes (say, pages 1-3, 4-11, 12, etc.).

I'm aware that A-PDF allows me to pull individual pages form the source document, but I would prefer to set a range & a file-name for each resulting document.

I cannot use an external website for splitting; any suggestions on tools/utilities/whatever I may be missing?

Best Answer

Sejda PDF is a free open source project that provides PDF manipulation tasks.

It provides a command line tool that you can use to split PDF files by pages:

./bin/sejda-console splitbypages --files /input/file.pdf --pageNumbers 4 10 15 -o /output/folder

Disclaimer: I'm one of the developers.

Related Question