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;