[][src]Struct gifski::Collector

pub struct Collector { /* fields omitted */ }

Collect frames that will be encoded

Note that writing will finish only when the collector is dropped. Collect frames on another thread, or call drop(collector) before calling writer.write()!

Methods

impl Collector[src]

pub fn add_frame_rgba(
    &mut self,
    frame_index: usize,
    image: ImgVec<RGBA8>,
    delay: u16
) -> CatResult<()>
[src]

Frame index starts at 0. Set each frame only once, but you can set them in any order. Frame delay is in GIF units (1/100s).

pub fn add_frame_png_file(
    &mut self,
    frame_index: usize,
    path: PathBuf,
    delay: u16
) -> CatResult<()>
[src]

Read and decode a PNG file from disk. Frame index starts at 0. Frame delay is in GIF units (1/100s)

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T[src]