folio-doc 0.0.1

PDF document model and page tree for the folio PDF library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! High-level PDF document model.
//!
//! Provides `PdfDoc` and `Page` types that wrap the low-level COS layer
//! with PDF-specific semantics.

mod info;
mod page;
mod pdfdoc;

pub use info::DocInfo;
pub use page::Page;
pub use pdfdoc::PdfDoc;