snippetbashTip
pdftk — PDF toolkit. More information: <https://www.pdflabs.com/docs/pdftk-man-page/>.
Viewed 0 times
httpstoolkitcommandpdftkclipdfinformationmore
Problem
How to use the
pdftk command: PDF toolkit. More information: <https://www.pdflabs.com/docs/pdftk-man-page/>.Solution
pdftk — PDF toolkit. More information: <https://www.pdflabs.com/docs/pdftk-man-page/>.Extract pages 1-3, 5, and 6-10 from a PDF file and save them as another one:
pdftk {{path/to/input}}.pdf cat 1-3 5 6-10 output {{path/to/output}}.pdfMerge (concatenate) a list of PDF files and save the result as another one:
pdftk {{path/to/file1}}.pdf {{path/to/file2}}.pdf cat output {{path/to/output}}.pdfSplit each page of a PDF file into a separate file, with a given filename output pattern:
pdftk {{path/to/input}}.pdf burst output {{path/to/out_%d}}.pdfRotate all pages by 180 degrees clockwise:
pdftk {{path/to/input}}.pdf cat 1-endsouth output {{path/to/output}}.pdfRotate third page by 90 degrees clockwise and leave others unchanged:
pdftk {{path/to/input}}.pdf cat 1-2 3east 4-end output {{path/to/output}}.pdfInterleave two PDFs with one-sided scans of a two-sided document, where the backs were scanned back to front:
pdftk A={{path/to/fronts}}.pdf B={{path/to/backs}}.pdf shuffle A1-end Bend-1 output {{path/to/output}}.pdfCode Snippets
Extract pages 1-3, 5, and 6-10 from a PDF file and save them as another one
pdftk {{path/to/input}}.pdf cat 1-3 5 6-10 output {{path/to/output}}.pdfMerge (concatenate) a list of PDF files and save the result as another one
pdftk {{path/to/file1}}.pdf {{path/to/file2}}.pdf cat output {{path/to/output}}.pdfSplit each page of a PDF file into a separate file, with a given filename output pattern
pdftk {{path/to/input}}.pdf burst output {{path/to/out_%d}}.pdfRotate all pages by 180 degrees clockwise
pdftk {{path/to/input}}.pdf cat 1-endsouth output {{path/to/output}}.pdfRotate third page by 90 degrees clockwise and leave others unchanged
pdftk {{path/to/input}}.pdf cat 1-2 3east 4-end output {{path/to/output}}.pdfContext
tldr-pages: common/pdftk
Revisions (0)
No revisions yet.