[go: up one dir, main page]

image 0.24.0

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Decoding of WebP Images

pub use self::decoder::WebPDecoder;

mod decoder;
mod loop_filter;
mod transform;

mod huffman;
mod lossless;
mod lossless_transform;

pub mod vp8;