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;