Skip to main content

pdf_annot/
lib.rs

1#![warn(missing_docs)]
2//! PDF annotation engine.
3//!
4//! Provides typed access to all annotation types defined in ISO 32000-2 §12.5,
5//! and annotation creation via the `write` feature (backed by lopdf).
6
7mod annotation;
8mod appearance;
9pub mod appearance_writer;
10pub mod builder;
11pub mod error;
12#[cfg(feature = "write")]
13pub mod flatten;
14mod geometric;
15mod link;
16mod markup;
17mod stamp;
18mod types;
19
20pub use annotation::*;
21pub use appearance::*;
22#[cfg(feature = "write")]
23pub use flatten::flatten_annotations;
24pub use geometric::*;
25pub use link::*;
26pub use markup::*;
27pub use stamp::*;
28pub use types::*;