Skip to main content

stenoxide_core/image_io/
mod.rs

1//! Layer 1 — image input/output.
2//!
3//! Loads the container image, validates it through a type-state pipeline and
4//! analyses it for traces of lossy compression. The type-state pattern
5//! guarantees that no downstream layer can ever receive an image that has not
6//! passed every validation gate.
7
8pub mod buffer;
9pub mod jpeg_detect;
10pub mod phash;
11pub mod validate;