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