image/codecs/jpeg/mod.rs
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
9pub use self::decoder::JpegDecoder;
10pub use self::encoder::{JpegEncoder, PixelDensity, PixelDensityUnit};
11
12mod decoder;
13mod encoder;
14mod entropy;
15mod transform;