pdfpurr 0.4.0

A comprehensive pure-Rust PDF library for reading, writing, rendering, and validating PDF documents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! PDF standards compliance validation.
//!
//! Provides validation for:
//! - **PDF/A** (ISO 19005) — archival compliance
//! - **PDF/X** (ISO 15930) — print production compliance
//!
//! Each validator returns a [`StandardsReport`] containing individual
//! [`StandardsCheck`] results, following the same pattern as the
//! accessibility validation in [`crate::accessibility`].

pub mod common;
pub mod pdfa;
pub mod pdfx;

pub use common::{PdfALevel, PdfXLevel, StandardsCheck, StandardsReport};
pub use pdfa::validate_pdfa;
pub use pdfx::validate_pdfx;