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 | |
10 | pub use self::decoder::JpegDecoder; |
11 | pub use self::encoder::{JpegEncoder, PixelDensity, PixelDensityUnit}; |
12 | |
13 | mod decoder; |
14 | mod encoder; |
15 | mod entropy; |
16 | mod transform; |
17 |