Lopdf - Rust library for PDF files manipulation

lopdf is a Rust library for PDF document manipulation. It is used by the printpdf which is relatively popular. lopdf is the vital for safe work with PDF documents without the need to depend on the unsafe libraries like poppler.

For example see how to modify the existing PDF file:

let mut doc = Document::load("example.pdf")?;
doc.version = "1.4".to_string();
doc.replace_text(1, "Hello World!", "Modified text!");
doc.save("modified.pdf")?;

Or see more documentation on this crate. If anyone wants to help with the development, there is a list of issues.

5 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.