1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
mod bit_data;
mod bit_depth;
mod file;
mod file_data;
mod file_header;

///
/// Read in, create and edit bitmaps
///
pub mod image;
mod info_header;
mod pixel_data;
mod rgb_quad;

///
/// Color representation (Red, Green, Blue, Alpha)
///
pub mod rgba;
mod util;