Skip to main content

zpdf_core/
lib.rs

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