Struct image::codecs::gif::GifEncoder   [−][src]
pub struct GifEncoder<W: Write> { /* fields omitted */ }
Expand description
GIF encoder.
Implementations
Creates a new GIF encoder.
Create a new GIF encoder, and has the speed parameter speed. See
Frame::from_rgba_speed
for more information.
Set the repeat behaviour of the encoded GIF
Encode a single image.
Encode one frame of animation.
pub fn encode_frames<F>(&mut self, frames: F) -> ImageResult<()> where
    F: IntoIterator<Item = Frame>, 
pub fn encode_frames<F>(&mut self, frames: F) -> ImageResult<()> where
    F: IntoIterator<Item = Frame>, 
Encodes Frames.
Consider using try_encode_frames instead to encode an animation::Frames like iterator.
pub fn try_encode_frames<F>(&mut self, frames: F) -> ImageResult<()> where
    F: IntoIterator<Item = ImageResult<Frame>>, 
pub fn try_encode_frames<F>(&mut self, frames: F) -> ImageResult<()> where
    F: IntoIterator<Item = ImageResult<Frame>>, 
Try to encode a collection of ImageResult<animation::Frame> objects.
Use this function to encode an animation::Frames like iterator.
Whenever an Err item is encountered, that value is returned without further actions.