1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Decoding and Encoding of JPEG Images
//!
//! JPEG (Joint Photographic Experts Group) is an image format that supports lossy compression.
//! This module implements the Baseline JPEG standard.
//!
//! #Related Links
//! * http://www.w3.org/Graphics/JPEG/itu-t81.pdf - The JPEG specification
//!

pub use self::decoder::JPEGDecoder;
pub use self::encoder::JPEGEncoder;
pub use self::decoder::Component;

mod encoder;
mod decoder;
mod entropy;
mod transform;