[][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>,
    presentation_timestamp: f64
) -> CatResult<()>
[src]

Frame index starts at 0.

Set each frame (index) only once, but you can set them in any order.

Presentation timestamp is time in seconds (since file start at 0) when this frame is to be displayed.

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

Read and decode a PNG file from disk.

Frame index starts at 0.

Presentation timestamp is time in seconds (since file start at 0) when this frame is to be displayed.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> SetParameter 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.