//! Decoding and Encoding of BMP Images //! //! A decoder and encoder for BMP (Windows Bitmap) images //! //! # Related Links //! * //! * //! pub use self::decoder::BmpDecoder; pub use self::encoder::BmpEncoder; mod decoder; mod encoder;