Struct imagepipe::SRGBImage[][src]

pub struct SRGBImage {
    pub width: usize,
    pub height: usize,
    pub data: Vec<u8>,
}

A RawImage processed into a full 8bit sRGB image with levels and gamma

The data is a Vec width widthheight3 elements, where each element is a value between 0 and 255 with the intensity of the color channel with gamma applied

Fields

Trait Implementations

impl Debug for SRGBImage
[src]

Formats the value using the given formatter. Read more

impl Clone for SRGBImage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SRGBImage

impl Sync for SRGBImage