pub type RgbImageData = ImageData<Rgb>;
pub struct RgbImageData { pub size: (u32, u32), pub data: Vec<Rgb>, }
size: (u32, u32)
data: Vec<Rgb>