zpdf_core/lib.rs
1mod color;
2mod error;
3mod geometry;
4mod limits;
5mod object;
6pub mod time;
7
8pub use color::{cmyk_to_rgb_naive, rgb_to_cmyk_naive};
9pub use error::{Error, Result};
10pub use geometry::{Matrix, Point, Rect};
11pub use limits::ParseLimits;
12pub use object::{ObjectId, PdfDict, PdfName, PdfObject, PdfStream, PdfString};