Struct image::codecs::webp::WebPEncoder
source · pub struct WebPEncoder<W> { /* private fields */ }
Expand description
WebP Encoder.
Implementations§
source§impl<W: Write> WebPEncoder<W>
impl<W: Write> WebPEncoder<W>
sourcepub fn new_lossless(w: W) -> Self
pub fn new_lossless(w: W) -> Self
Create a new encoder that writes its output to w
.
Uses “VP8L” lossless encoding.
Trait Implementations§
source§impl<W: Write> ImageEncoder for WebPEncoder<W>
impl<W: Write> ImageEncoder for WebPEncoder<W>
source§fn write_image(
self,
buf: &[u8],
width: u32,
height: u32,
color_type: ColorType
) -> ImageResult<()>
fn write_image( self, buf: &[u8], width: u32, height: u32, color_type: ColorType ) -> ImageResult<()>
Writes all the bytes in an image to the encoder. Read more
Auto Trait Implementations§
impl<W> RefUnwindSafe for WebPEncoder<W>where W: RefUnwindSafe,
impl<W> Send for WebPEncoder<W>where W: Send,
impl<W> Sync for WebPEncoder<W>where W: Sync,
impl<W> Unpin for WebPEncoder<W>where W: Unpin,
impl<W> UnwindSafe for WebPEncoder<W>where W: UnwindSafe,
Blanket Implementations§
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