Loading
Home ›
Slice and Dice PDF
Mar 24, 2009 By Janos Gyerik
in
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.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- I didn't knew this thing by
1 hour 40 min ago - Author's reply
5 hours 4 min ago - Link to modlys
6 hours 11 min ago - I use YNAB because of the
6 hours 23 min ago - Search
11 hours 26 min ago - Question
11 hours 49 min ago - for the record
11 hours 51 min ago - That's disappointing. Thanks
14 hours 15 min ago - Well spotted. I've corrected
15 hours 44 min ago - This is a great program. We
18 hours 44 min ago





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.