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]

Stride is in pixels. Allows defining regions of larger images or images with padding without copying.

[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.

[src]

Remap pixels assuming they will be displayed on this background.

Pixels that match the background color will be made transparent if there's a fully transparent color available in the palette.

The background image's pixels must outlive this image

[src]

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]