1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-31 00:33:35 +02:00
tldr/pages/common/wkhtmltopdf.md
Managor 99c7af4917
*: use a more specific more info link, org domain (#17699)
Mass update for more specific "more info" links
2025-08-16 11:12:49 -07:00

24 lines
716 B
Markdown

# wkhtmltopdf
> Convert HTML documents or web pages into PDF files.
> More information: <https://wkhtmltopdf.org/usage/wkhtmltopdf.txt>.
- Convert a HTML document into PDF:
`wkhtmltopdf {{input.html}} {{output.pdf}}`
- Specify the PDF page size (please see `PaperSize` of `QPrinter` for supported sizes):
`wkhtmltopdf --page-size {{A4}} {{input.html}} {{output.pdf}}`
- Set the PDF page margins:
`wkhtmltopdf --margin-{{top|bottom|left|right}} {{10mm}} {{input.html}} {{output.pdf}}`
- Set the PDF page orientation:
`wkhtmltopdf --orientation {{Landscape|Portrait}} {{input.html}} {{output.pdf}}`
- Generate a greyscale version of the PDF document:
`wkhtmltopdf --grayscale {{input.html}} {{output.pdf}}`