Crates.io | html2pdf |
lib.rs | html2pdf |
version | 0.7.1 |
source | src |
created_at | 2021-07-19 09:51:53.211454 |
updated_at | 2024-03-12 07:11:49.984329 |
description | Convert HTML to PDF using a Headless Chrome browser |
homepage | |
repository | https://github.com/ilaborie/html2pdf |
max_upload_size | |
id | 424671 |
size | 74,868 |
Just a CLI over the headless_chrome
crate to create PDF.
Need the Rust toolchain: https://rustup.rs/.
cargo install html2pdf
html2pdf path/to/file.html
To remove logs, set the env var RUST_LOG
to none
:
RUST_LOG="none" html2pdf path/to/file.html
Just run html2pdf --help
:
html2pdf 0.4.0
Generate a PDF from a local HTML file using a headless chrome
USAGE:
html2pdf [FLAGS] [OPTIONS] <input>
FLAGS:
--background Allow print background
-h, --help Prints help information
--landscape Use landscape mode
--disable-sandbox Disable Chrome sandbox. Not recommended, unless running on docker
-V, --version Prints version information
OPTIONS:
--footer <footer> HTML template for the print footer. Should use the same format as the headerTemplate
--header <header> HTML template for the print header. Should be valid HTML markup with following classes used
to inject printing values into them: date for formatted print date, title for document
title, url for document location, pageNumber for current page number, totalPages for total
pages in the document. For example, `<span class=title></span>` would generate span
containing the title
--margin <margin> Margin in inches You can define margin like this: '0.4' the value is applied for all side,
'0.4 0.4' : first value is applied for top and bottom, second for left and right, '0.4 0.4
0.4 0.4' : first value is applied for top then, right, then bottom, and last for left
-o, --output <output> Output file. By default, just change the input extension to PDF
--paper <paper> Paper size. Supported values: A4, Letter, A3, Tabloid, A2, A1, A0, A5, A6
--range <range> Paper ranges to print, e.g. '1-5, 8, 11-13'
--scale <scale> Scale, default to 1.0
--wait <wait> Time to wait in ms before printing. Examples: 150ms, 10s
ARGS:
<input> Input HTML file