1//! Decoding of TGA Images
2//!
3//! # Related Links
4//! <http://googlesites.inequation.org/tgautilities>
5
6/// A decoder for TGA images
7///
8/// Currently this decoder does not support 8, 15 and 16 bit color images.
9pub use self::decoder::TgaDecoder;
10
11//TODO add 8, 15, 16 bit color support
12
13pub use self::encoder::TgaEncoder;
14
15mod decoder;
16mod encoder;
17mod header;
18