mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
18 lines
466 B
Plaintext
18 lines
466 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pstoedit
|
|
|
|
> Convert PDF files into various image formats.
|
|
> More information: <http://www.calvina.de/pstoedit/pstoedit.htm>.
|
|
|
|
- Convert a PDF page to PNG or JPEG format:
|
|
|
|
`pstoedit -page {{page_number}} -f magick {{path/to/file.pdf}} {{page.png|page.jpg}}`
|
|
|
|
- Convert multiple PDF pages to numbered images:
|
|
|
|
`pstoedit -f magick {{path/to/file}} {{page%d.png|page%d.jpg}}`
|