folio_content/lib.rs
1//! PDF content stream parsing and graphics state.
2//!
3//! This module parses page content streams into a sequence of typed operations,
4//! maintains the graphics state stack, and provides an element-level iterator.
5
6mod gstate;
7mod ops;
8mod parser;
9
10pub use gstate::{GraphicsState, GraphicsStateStack};
11pub use ops::{ContentOp, PathSegment, TextOp};
12pub use parser::parse_content_stream;