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