1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Decoding and Encoding of TIFF Images
//!
//! TIFF (Tagged Image File Format) is a versatile image format that supports
//! lossless and lossy compression.
//!
//! # Related Links
//! * <http://partners.adobe.com/public/developer/tiff/index.html> - The TIFF specification
//!

pub use self::decoder::TIFFDecoder;

mod decoder;