Skip to main content

image/codecs/tga/
mod.rs

1//! Decoding of TGA Images
2//!
3//! # Related Links
4//! <http://googlesites.inequation.org/tgautilities>
5
6pub use self::decoder::TgaDecoder;
7
8pub use self::encoder::TgaEncoder;
9
10mod decoder;
11mod encoder;
12mod header;