pdf-annot 1.0.0-beta.8

PDF annotation engine — parsing and typed access to all annotation types per ISO 32000-2 §12.5.
Documentation
#![warn(missing_docs)]
//! PDF annotation engine.
//!
//! Provides typed access to all annotation types defined in ISO 32000-2 §12.5,
//! and annotation creation via the `write` feature (backed by lopdf).

mod annotation;
mod appearance;
pub mod appearance_writer;
pub mod builder;
pub mod error;
mod geometric;
mod link;
mod markup;
mod stamp;
mod types;

pub use annotation::*;
pub use appearance::*;
pub use geometric::*;
pub use link::*;
pub use markup::*;
pub use stamp::*;
pub use types::*;