Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
pdftocairo Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pdftocairo
> Converts PDF files to PNG/JPEG/TIFF/PDF/PS/EPS/SVG using cairo.
> More information: <https://poppler.freedesktop.org>.
- Convert a PDF file to JPEG:
`pdftocairo {{path/to/file.pdf}} -jpeg`
- Convert to PDF expanding the output to fill the paper:
`pdftocairo {{path/to/file.pdf}} {{output.pdf}} -pdf -expand`
- Convert to SVG specifying the first/last page to convert:
`pdftocairo {{path/to/file.pdf}} {{output.svg}} -svg -f {{first_page}} -l {{last_page}}`
- Convert to PNG with 200ppi resolution:
`pdftocairo {{path/to/file.pdf}} {{output.png}} -png -r 200`
- Convert to grayscale TIFF setting paper size to A3:
`pdftocairo {{path/to/file.pdf}} -tiff -gray -paper A3`
- Convert to PNG cropping x and y pixels from the top-left corner:
`pdftocairo {{path/to/file.pdf}} -png -x {{x_pixels}} -y {{y_pixels}}`