[go: up one dir, main page]

image 0.3.11

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//!  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::stream::ByteOrder;

mod decoder;
mod ifd;
mod stream;