pdfseparate - Man Page
Portable Document Format (PDF) page extractor
Examples (TL;DR)
- Extract pages from PDF file and make a separate PDF file for each page:
pdfseparate path/to/source_filename.pdf path/to/destination_filename-%d.pdf
- Specify the first/start page for extraction:
pdfseparate -f 3 path/to/source_filename.pdf path/to/destination_filename-%d.pdf
- Specify the last page for extraction:
pdfseparate -l 10 path/to/source_filename.pdf path/to/destination_filename-%d.pdf
Synopsis
pdfseparate [options] PDF-file PDF-page-pattern
Description
pdfseparate extract single pages from a Portable Document Format (PDF).
pdfseparate reads the PDF file PDF-file, extracts one or more pages, and writes one PDF file for each page to PDF-page-pattern.
PDF-page-pattern should contain %d (or any variant respecting printf format), since %d is replaced by the page number.
The PDF-file should not be encrypted.
Options
Example
pdfseparate sample.pdf sample-%d.pdf
extracts all pages from sample.pdf, if i.e. sample.pdf has 3 pages, it produces
sample-1.pdf, sample-2.pdf, sample-3.pdf
Author
The pdfseparate software and documentation are copyright 1996-2004 Glyph & Cog, LLC and copyright 2005-2011 The Poppler Developers - http://poppler.freedesktop.org
See Also
pdfdetach(1), pdffonts(1), pdfimages(1), pdfinfo(1), pdftocairo(1), pdftohtml(1), pdftoppm(1), pdftops(1), pdftotext(1) pdfsig(1), pdfunite(1)
Referenced By
pdfattach(1), pdfdetach(1), pdffonts(1), pdfimages(1), pdfinfo(1), pdfsig(1), pdftocairo(1), pdftohtml(1), pdftoppm(1), pdftops(1), pdftotext(1), pdfunite(1).