rustbitmap/bitmap/
mod.rs

1mod bit_data;
2mod bit_depth;
3mod file;
4mod file_data;
5mod file_header;
6
7///
8/// Read in, create and edit bitmaps
9///
10pub mod image;
11mod info_header;
12mod pixel_data;
13mod rgb_quad;
14
15///
16/// Color representation (Red, Green, Blue, Alpha)
17///
18pub mod rgba;
19mod util;