pub type BGRA8 = Bgra<u8>;
8-bit BGRA
struct BGRA8 { pub b: u8, pub g: u8, pub r: u8, pub a: u8, }
b: u8
Blue Component
g: u8
Green Component
r: u8
Red Component
a: u8
Alpha Component