oxidize-pdf 2.5.1

A pure Rust PDF generation and manipulation library with zero external dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
//! Page labels for custom page numbering according to ISO 32000-1 Section 12.4.2
//!
//! Page labels allow PDFs to display custom page numbers that differ from the
//! physical page order, such as roman numerals for preface pages.

mod page_label;
mod page_label_tree;

pub use page_label::{PageLabel, PageLabelRange, PageLabelStyle};
pub use page_label_tree::{PageLabelBuilder, PageLabelTree};