//! Image processing module — format detection, decoding, encoding, transform, color conversion.
//!
//! # Format support matrix (truthful)
//!
//! Decoding (`decoder::decode`) is implemented for PNG, JPEG, BMP, QOI,
//! Farbfeld, PNM (P1-P6), GIF, WebP, TIFF, AVIF, ICO, SVG and SVGZ.
//! GIF and animated WebP use the existing single-frame API and return the
//! first frame; use a future animation API when frame timing is required.
//!
//! Encoding is implemented for PNG, JPEG, BMP, GIF, TIFF, QOI, Farbfeld,
//! PNM and SVG (SVG embeds a base64 PNG). WebP/AVIF/ICO encoding returns
//! `Err`.
pub use *;
pub use ;
pub use *;
pub use *;
pub use ;
pub use *;
pub use Image;