Reputation: 1004
how can I extract single pages from a pdf using pdftk commands? Thanks for your help!
Upvotes: 0
Views: 1409
Reputation: 9883
From the quick look at the pdftk homepage
For example if you want to extract 11th page then you can do it like this
pdftk A=full-pdf.pdf cat A11 output outfile_p11.pdf
Upvotes: 2