[go: up one dir, main page]

image 0.3.3

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Decoding and Encoding of PNG Images
//!
//! PNG (Portable Network Graphics) is an image format that supports lossless compression.
//!
//! # Related Links
//! * http://www.w3.org/TR/PNG/ - The PNG Specification
//!

pub use self::decoder::PNGDecoder;
pub use self::encoder::PNGEncoder;

mod filter;
mod decoder;
mod encoder;
pub mod zlib;
pub mod deflate;
pub mod hash;