Struct imagequant::Image [] [src]

pub struct Image<'a> { /* fields omitted */ }

Describes image dimensions for the library.

Methods

impl<'a> Image<'a>
[src]

[src]

Describe dimensions of a slice of RGBA pixels.

bitmap must be either &[u8] or a slice with one element per pixel (&[RGBA]).

Use 0. for gamma if the image is sRGB (most images are).

[src]

[src]

[src]

Reserves a color in the output palette created from this image. It behaves as if the given color was used in the image and was very important.

RGB values of liq_color are assumed to have the same gamma as the image.

It must be called before the image is quantized.

Returns error if more than 256 colors are added. If image is quantized to fewer colors than the number of fixed colors added, then excess fixed colors will be ignored.

Trait Implementations

impl<'a> Drop for Image<'a>
[src]

[src]

Executes the destructor for this type. Read more

impl<'a> Send for Image<'a>
[src]