Work-in-progress Rust library for reading and manipulating bitmap (.bmp) files. Documentation here.
Usage
Add this to your Cargo.toml:
[]
= "0.0.5"
Features
Currently supports reading 24-bit and 8-bit .bmp files into a mutable struct, performing manipulations on the image such as greyscaling, rotation, or mirroring the image, and then writing the struct to a bitmap file. Also support generating a 24 bit bitmap file of given width and height.
Example
extern crate bumpy;
use Bmp;
//open a file
let mut file = open?;
//build a Bmp struct from the file
let bmp = build_from_file?;
//do stuff like greyscale it
bmp.greyscale;
//write the modified bmp to a new file
bmp2.write_to_file?;