blob: 09f80ba3d2200ac0f597b24fdeb16ac4884aa98f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//! Decoding and Encoding of BMP Images
//!
//! A decoder and encoder for BMP (Windows Bitmap) images
//!
//! # Related Links
//! * <https://msdn.microsoft.com/en-us/library/windows/desktop/dd183375%28v=vs.85%29.aspx>
//! * <https://en.wikipedia.org/wiki/BMP_file_format>
//!
pub use self::decoder::BmpDecoder;
pub use self::encoder::BMPEncoder;
mod decoder;
mod encoder;
|