How to Extract Pages from a PDF: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
m (Marcin moved page Pdftk to How to Extract Pages from a PDF)
Line 4: Line 4:
pdftk full-pdf.pdf cat 12-15 output outfile_p12-15.pdf
pdftk full-pdf.pdf cat 12-15 output outfile_p12-15.pdf


=Usage Example=
=Usage Example to Extract Page 2-3 from a File Named 1.pdf=


cd Desktop
cd Desktop

Revision as of 22:31, 23 September 2022

About

How do you extract pages from a PDF doc?

pdftk full-pdf.pdf cat 12-15 output outfile_p12-15.pdf

Usage Example to Extract Page 2-3 from a File Named 1.pdf

cd Desktop

sudo apt install pdftk

pdftk 1.pdf cat 2-3 output Hybrid_Inverter.pdf