Robin Alexander
Robin Alexander

Reputation: 1004

Extract all pages as single from a pdf with pdftk

how can I extract single pages from a pdf using pdftk commands? Thanks for your help!

Upvotes: 0

Views: 1409

Answers (1)

deimus
deimus

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

Related Questions