image 0.13.0

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//!  Decoding of BMP Images
//!
//!  A decoder 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;

mod decoder;