3 releases (breaking)

0.4.0 May 4, 2021
0.3.0 Aug 2, 2016
0.2.0 Aug 1, 2016

#1393 in Text processing

Download history 401/week @ 2023-11-26 472/week @ 2023-12-03 234/week @ 2023-12-10 214/week @ 2023-12-17 54/week @ 2023-12-24 144/week @ 2023-12-31 334/week @ 2024-01-07 397/week @ 2024-01-14 494/week @ 2024-01-21 394/week @ 2024-01-28 405/week @ 2024-02-04 321/week @ 2024-02-11 342/week @ 2024-02-18 239/week @ 2024-02-25 424/week @ 2024-03-03 125/week @ 2024-03-10

1,147 downloads per month
Used in resufancy

MIT license

62KB
970 lines

wkhtmltopdf-rs

High-level Rust bindings for wkhtmltopdf. This is a wrapper around the low-level binding provided by libwkhtmltox-sys.

Resource Link
Crate Crates.io
Documentation Cargo docs
Upstream wkhtmltopdf.org

This crate aims to provide full configuration of wkhtmltopdf with safe, ergonomic Rust. Wkhtmltopdf has several non-obvious limitations (mostly caused by Qt). that make it very easy to cause undefined behavior with the C bindings. Two such limitations that greatly impact the API are:

  1. Wkhtmltopdf initialization can only occur once per process; deinitialization does make it safe to reuse
  2. PDF generation must always occur on the thread that initialized wkhtmltopdf

This crate should make it impossible to break those rules in safe code. If you need parallel PDF generation, you will need to spawn/fork processes to do so. Such an abstraction would be a welcome addition to this crate.

Install

Install wkhtmltopdf 0.12.3.

Note: This library using the libs (shared objects) and includes (headers) for PDF generation instead of the wkhtmltopdf executable.

Usage

Basic usage looks like this:

  let html = r#"<html><body><div>foo</div></body></html>"#;
  let mut pdf_app = PdfApplication::new().expect("Failed to init PDF application");
  let mut pdfout = pdf_app.builder()
      .orientation(Orientation::Landscape)
      .margin(Size::Inches(2))
      .title("Awesome Foo")
      .build_from_html(&html)
      .expect("failed to build pdf");

  pdfout.save("foo.pdf").expect("failed to save foo.pdf");
  println!("generated PDF saved as: foo.pdf");

Build

As long as the includes are installed (e.g. pdf.h), then it's all cargo:

cargo build
cargo test

Note: tests have to be combined into a single test case because we can only init PdfApplication once, and it is !Send/!Sync. So the preference going forward will be to test with a variety of good examples.

Contributions welcome in the form of issue reports, feature requests, feedback, and/or pull request.

Dependencies

~1.5–2.1MB
~65K SLoC