oxideav-webp 0.2.1

Pure-Rust WebP image codec — orphan-rebuild scaffold pending clean-room re-implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Published-API `oxideav_webp::encoder_anim` module — animation
//! encoder surface grouped under its qualified path.
//!
//! Per the published 0.1.2 surface, consumers may reach
//! [`build_animated_webp`] / [`build_animated_webp_with_options`] /
//! [`AnimFrame`] / [`AnimFrameMode`] / [`AnimEncoderOptions`] either at
//! the crate root or via this module. Both paths share the same
//! implementation in [`crate::anim_encode`].

pub use crate::anim_encode::{
    build_animated_webp, build_animated_webp_with_options, AnimEncoderOptions, AnimFrame,
    AnimFrameMode, DeltaConfig, DownsampleKernel,
};

/// Result alias for this module's entry points — `Result<T, WebpError>`.
pub use crate::error::Result;