1//! Decoding and Encoding of JPEG Images
2//!
3//! JPEG (Joint Photographic Experts Group) is an image format that supports lossy compression.
4//! This module implements the Baseline JPEG standard.
5//!
6//! # Related Links
7//! * <http://www.w3.org/Graphics/JPEG/itu-t81.pdf> - The JPEG specification
8//!
9
10pub use self::decoder::JpegDecoder;
11pub use self::encoder::{JpegEncoder, PixelDensity, PixelDensityUnit};
12
13mod decoder;
14mod encoder;
15mod entropy;
16mod transform;
17