djvu-rs 0.22.1

Pure-Rust DjVu codec — decode and encode DjVu documents. MIT licensed, no GPL dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! IW44 wavelet image encoder (re-export shim).
//!
//! The encoder implementation lives in the standalone `djvu-iw44` crate
//! ([`djvu_iw44::encode`]); this module re-exports it so the historical
//! `djvu_rs::iw44_encode::*` paths keep working.
//!
//! Unlike [`crate::jb2_encode`], IW44 has no multi-page container helpers and
//! no experiment-only types, so this shim is a pure re-export with nothing
//! left behind in the monolith.

pub use djvu_iw44::encode::*;