image 0.25.10

Imaging library. Provides basic image processing and encoders/decoders for common image formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Decoding of TGA Images
//!
//! # Related Links
//! <http://googlesites.inequation.org/tgautilities>

pub use self::decoder::TgaDecoder;

pub use self::encoder::TgaEncoder;

mod decoder;
mod encoder;
mod header;