zpdf 0.6.0

Pure Rust PDF parsing library with wgpu GPU rendering
Documentation
pub use zpdf_color::{IccCache, IccTransform};
pub use zpdf_content::interpreter::ContentInterpreter;
pub use zpdf_content::text::{spans_to_text, TextSpan};
pub use zpdf_core::*;
pub use zpdf_display_list as display_list;
pub use zpdf_display_list::DisplayList;
pub use zpdf_document::{
    AcroForm, Annotation, FieldKind, FieldValue, FormField, OcConfig, PdfDocument, PdfPage,
    ResourceDict,
};
pub use zpdf_font::FontCache;
pub use zpdf_image::{DecodedImage, ImageCache};
pub use zpdf_parser::PdfFile;
pub use zpdf_render::RenderBackend;

#[cfg(feature = "cpu-render")]
pub mod cpu {
    pub use zpdf_render_cpu::*;
}

#[cfg(feature = "gpu-render")]
pub mod gpu {
    pub use zpdf_render_wgpu::*;
}