Slice and Dice PDF
Using poppler-tools and psutils, you can extract a range of pages from a larger PDF file. For example, if you want to extract pages 11–14 of the PDF file afile.pdf, you could use the following command:
$ pdftops afile.pdf - | psselect -p11-14 | ps2pdf - file-p11-14.pdf
The pdftops command converts the PDF file to PostScript; the psselect command selects the relevant pages from the PostScript, and the ps2pdf command converts the selected PostScript into a new PDF file.










This week 5 lucky Members will receive a copy of The Official Ubuntu Server Book by Benjamin Mako Hill and Linux Journal's very own Kyle Rankin. No entry necessary. Check back here early next week to find out who the lucky Online Members are.




Comments
looking for similar
This and comments give me things to investigate tomorrow, but I have been looking for something that simply combines pdfs or images into one pdf.
Whitening System
Poppler-tools and psutils if actually can command over the PDF file then great…!
Seriously I agree using
Seriously I agree using poppler-tools and psutils, you can extract a range of pages from a larger PDF file.
bmx bikes
I found this option really of good use and great significance
pdftk is better
I like to use pdftk for such things. The above line translates to:
"pdftk A=afile.pdf cat A11-14 output file-p11-14.pdf"
No converting to and from postscript.
There is another option
You could use pdftk, which does everything without the need for conversion to/from ps.
Post new comment