jxl_oxide/
integration.rs

1//! Various integrations to other library crates.
2//!
3//! # Available integrations
4//!
5//! Integrations are enabled with feature flags.
6//! - `JxlDecoder`, which implements `image::ImageDecoder` (`image` feature)
7
8#[cfg(feature = "image")]
9mod image;
10
11#[cfg(feature = "image")]
12pub use image::*;