bmp_rust/lib.rs
1//! BMP-Rust is a pure Rust library written with no external dependencies (except for the standard library), that can read and write to .BMP files.
2//!
3//! Besides the basic reading pixel color and changing pixel color, various filters, blurs, and shapes are implemented.
4//! The library can also parse the file header, DIB header and other parts of the file.
5//! Many useful utility functions are also included.
6//!
7pub mod bmp;