pub type RGB8 = Rgb<u8>;
Expand description
8-bit RGB
The colorspace is technically undefined, but generally sRGB is assumed.
Aliased Type§
struct RGB8 {
pub r: u8,
pub g: u8,
pub b: u8,
}
Fields§
§r: u8
Red Component
g: u8
Green Component
b: u8
Blue Component