image 0.2.0-alpha

a pure rust imaging library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//!  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;
pub use self::decoder::ByteOrder;

mod decoder;
mod ifd;