lightweight-pdf-writer 0.3.0

Minimal PDF object/xref/stream writer for lightweight-pdf, zero required dependencies (FlateDecode compression via the optional miniz_oxide)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Minimal, zero-dependency PDF object/xref/stream writer for `lightweight-pdf`.
//! Never sees `Element`/`RenderNode` — only flat write operations
//! (`plan/00a-contracts-and-artifacts.md`, point 3).

mod content;
mod doc;
#[cfg(feature = "tagged-pdf")]
mod struct_tree;
mod writer;

pub use content::*;
pub use doc::*;
#[cfg(feature = "tagged-pdf")]
pub use struct_tree::*;
pub use writer::*;