image 0.3.15

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
1
2
3
4
5
6
7
8
//! Decoding of Webp Images

pub use self::decoder::WebpDecoder as WebpDecoder;

mod decoder;
mod transform;

pub mod vp8;