1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:46:00 +02:00

pdfimages: add page (#3668)

This commit is contained in:
Daniel Cervenkov 2019-12-31 19:24:36 +01:00 committed by Starbeamrainbowlabs
parent 489aa8c0dd
commit 55edce104a

19
pages/common/pdfimages.md Normal file
View file

@ -0,0 +1,19 @@
# pdfimages
> Utility for extracting images from PDFs.
- Extract all images from a PDF file and save them as PNGs:
`pdfimages -png {{path/to/file.pdf}} {{filename_prefix}}`
- Extract images from pages 3 to 5:
`pdfimages -f {{3}} -l {{5}} {{path/to/file.pdf}} {{filename_prefix}}`
- Extract images from a PDF file and include the page number in the output filenames:
`pdfimages -p {{path/to/file.pdf}} {{filename_prefix}}`
- List information about all the images in a PDF file:
`pdfimages -list {{path/to/file.pdf}}`