| Current Path : /usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/image/src/codecs/tga/ |
| Current File : //usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/image/src/codecs/tga/mod.rs |
//! Decoding of TGA Images //! //! # Related Links //! <http://googlesites.inequation.org/tgautilities> /// A decoder for TGA images /// /// Currently this decoder does not support 8, 15 and 16 bit color images. pub use self::decoder::TgaDecoder; //TODO add 8, 15, 16 bit color support pub use self::encoder::TgaEncoder; mod decoder; mod encoder; mod header;