Struct gif_dispose::Screen [] [src]

pub struct Screen {
    pub pixels: ImgVec<RGBA8>,
    // some fields omitted
}

Fields

Result of combining frames

Methods

impl Screen
[src]

[src]

Initialize empty screen from GIF Reader.

Make sure Reader is set to use Indexed color. decoder.set(gif::ColorOutput::Indexed);

[src]

[src]

Advance the screen by one frame.

The result will be in screen.pixels.buf

[src]