pub type RGB16 = Rgb<u16>;
Expand description
16-bit RGB in machine’s native endian
Be careful to perform byte-swapping when reading from files.
Aliased Type§
struct RGB16 {
pub r: u16,
pub g: u16,
pub b: u16,
}
Fields§
§r: u16
Red Component
g: u16
Green Component
b: u16
Blue Component