pdf-writer
A step-by-step PDF writer.
[]
= "0.12"
The entry point into the API is the main Pdf
, which constructs the document
into one big internal buffer. The top-level writer has many methods to create
specialized writers for specific PDF objects. These all follow the same general
pattern: They borrow the main buffer mutably, expose a builder pattern for
writing individual fields in a strongly typed fashion and finish up the object
when dropped.
There are a few more top-level structs with internal buffers, like the builder
for Content
streams, but wherever possible buffers are borrowed from parent
writers to minimize allocations.
Minimal example
The following example creates a PDF with a single, empty A4 page.
use ;
// Define some indirect reference ids we'll use.
let catalog_id = new;
let page_tree_id = new;
let page_id = new;
// Write a document catalog and a page tree with one A4 page that uses no resources.
let mut pdf = new;
pdf.catalog.pages;
pdf.pages.kids.count;
pdf.page
.parent
.media_box
.resources;
// Finish with cross-reference table and trailer and write to file.
write?;
For more examples, check out the examples folder in the repository.
Safety
This crate forbids unsafe code, but it depends on a few popular crates that use unsafe internally.
License
This crate is dual-licensed under the MIT and Apache 2.0 licenses.