pub struct GifEncoder<W>where
W: Write,{ /* private fields */ }
Expand description
GIF encoder.
Implementations§
source§impl<W> GifEncoder<W>where
W: Write,
impl<W> GifEncoder<W>where
W: Write,
sourcepub fn new(w: W) -> GifEncoder<W>
pub fn new(w: W) -> GifEncoder<W>
Creates a new GIF encoder.
sourcepub fn new_with_speed(w: W, speed: i32) -> GifEncoder<W>
pub fn new_with_speed(w: W, speed: i32) -> GifEncoder<W>
Create a new GIF encoder, and has the speed parameter speed
. See
Frame::from_rgba_speed
for more information.
sourcepub fn set_repeat(&mut self, repeat: Repeat) -> Result<(), ImageError>
pub fn set_repeat(&mut self, repeat: Repeat) -> Result<(), ImageError>
Set the repeat behaviour of the encoded GIF
sourcepub fn encode(
&mut self,
data: &[u8],
width: u32,
height: u32,
color: ColorType
) -> Result<(), ImageError>
pub fn encode( &mut self, data: &[u8], width: u32, height: u32, color: ColorType ) -> Result<(), ImageError>
Encode a single image.
sourcepub fn encode_frame(&mut self, img_frame: Frame) -> Result<(), ImageError>
pub fn encode_frame(&mut self, img_frame: Frame) -> Result<(), ImageError>
Encode one frame of animation.
sourcepub fn encode_frames<F>(&mut self, frames: F) -> Result<(), ImageError>where
F: IntoIterator<Item = Frame>,
pub fn encode_frames<F>(&mut self, frames: F) -> Result<(), ImageError>where
F: IntoIterator<Item = Frame>,
Encodes Frames.
Consider using try_encode_frames
instead to encode an animation::Frames
like iterator.
sourcepub fn try_encode_frames<F>(&mut self, frames: F) -> Result<(), ImageError>
pub fn try_encode_frames<F>(&mut self, frames: F) -> Result<(), ImageError>
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.
Auto Trait Implementations§
impl<W> RefUnwindSafe for GifEncoder<W>where
W: RefUnwindSafe,
impl<W> Send for GifEncoder<W>where
W: Send,
impl<W> Sync for GifEncoder<W>where
W: Sync,
impl<W> Unpin for GifEncoder<W>where
W: Unpin,
impl<W> UnwindSafe for GifEncoder<W>where
W: UnwindSafe,
Blanket Implementations§
source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
Convert the source color to the destination color using the specified
method
source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford
method by default
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T, U> ConvertInto<U> for Twhere
U: ConvertFrom<T>,
impl<T, U> ConvertInto<U> for Twhere
U: ConvertFrom<T>,
source§fn convert_into(self) -> U
fn convert_into(self) -> U
Convert into T with values clamped to the color defined bounds Read more
source§fn convert_unclamped_into(self) -> U
fn convert_unclamped_into(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
source§fn try_convert_into(self) -> Result<U, OutOfBounds<U>>
fn try_convert_into(self) -> Result<U, OutOfBounds<U>>
Convert into T, returning ok if the color is inside of its defined range,
otherwise an
OutOfBounds
error is returned which contains the unclamped color. Read more