2022-02-11 08:46:34 -06:00
|
|
|
# pdftoppm
|
|
|
|
|
|
|
|
> Convert PDF document pages to portable Pixmap (image formats).
|
|
|
|
> More information: <https://manned.org/pdftoppm>.
|
|
|
|
|
2025-03-27 15:53:12 +00:00
|
|
|
- Specify the range of pages to convert (`n` - first page, `m` - last page):
|
2022-02-11 08:46:34 -06:00
|
|
|
|
2025-03-27 15:53:12 +00:00
|
|
|
`pdftoppm -f {{n}} -l {{m}} {{path/to/file.pdf}} {{image_name_prefix}}`
|
2022-02-11 08:46:34 -06:00
|
|
|
|
|
|
|
- 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}}`
|