jxl-oxide 0.12.6

JPEG XL decoder written in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Various integrations to other library crates.
//!
//! # Available integrations
//!
//! Integrations are enabled with feature flags.
//! - `JxlDecoder`, which implements `image::ImageDecoder` (`image` feature)
//! - `register_image_decoding_hook`, which registers `.jxl` format to `image` crate (`image` feature)

#[cfg(feature = "image")]
mod image;

#[cfg(feature = "image")]
pub use image::*;