1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 01:55:24 +02:00
tldr/pages/linux/pdftoppm.md
Lena 6fd816e36e
pages/*: use lowercase n for integer placeholders (#16033)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-03-27 21:23:12 +05:30

741 B

pdftoppm

Convert PDF document pages to portable Pixmap (image formats). More information: https://manned.org/pdftoppm.

  • Specify the range of pages to convert (n - first page, m - last page):

pdftoppm -f {{n}} -l {{m}} {{path/to/file.pdf}} {{image_name_prefix}}

  • Convert only the first page of a PDF:

pdftoppm -singlefile {{path/to/file.pdf}} {{image_name_prefix}}

  • Generate a monochrome PBM file (instead of a color PPM file):

pdftoppm -mono {{path/to/file.pdf}} {{image_name_prefix}}

  • Generate a grayscale PGM file (instead of a color PPM file):

pdftoppm -gray {{path/to/file.pdf}} {{image_name_prefix}}

  • Generate a PNG file instead a PPM file:

pdftoppm -png {{path/to/file.pdf}} {{image_name_prefix}}