pub struct WebPDecoder<R> {
inner: WebPDecoder<R>,
orientation: Option<Orientation>,
}
Expand description
WebP Image format decoder.
Supports both lossless and lossy WebP images.
Fields§
§inner: WebPDecoder<R>
§orientation: Option<Orientation>
Implementations§
Source§impl<R: BufRead + Seek> WebPDecoder<R>
impl<R: BufRead + Seek> WebPDecoder<R>
Sourcepub fn new(r: R) -> ImageResult<Self>
pub fn new(r: R) -> ImageResult<Self>
Create a new WebPDecoder
from the Reader r
.
Sourcepub fn has_animation(&self) -> bool
pub fn has_animation(&self) -> bool
Returns true if the image as described by the bitstream is animated.
Sourcepub fn set_background_color(&mut self, color: Rgba<u8>) -> ImageResult<()>
pub fn set_background_color(&mut self, color: Rgba<u8>) -> ImageResult<()>
Sets the background color if the image is an extended and animated webp.
Trait Implementations§
Source§impl<'a, R: 'a + BufRead + Seek> AnimationDecoder<'a> for WebPDecoder<R>
impl<'a, R: 'a + BufRead + Seek> AnimationDecoder<'a> for WebPDecoder<R>
Source§fn into_frames(self) -> Frames<'a> ⓘ
fn into_frames(self) -> Frames<'a> ⓘ
Consume the decoder producing a series of frames.
Source§impl<R: BufRead + Seek> ImageDecoder for WebPDecoder<R>
impl<R: BufRead + Seek> ImageDecoder for WebPDecoder<R>
Source§fn dimensions(&self) -> (u32, u32)
fn dimensions(&self) -> (u32, u32)
Returns a tuple containing the width and height of the image
Source§fn color_type(&self) -> ColorType
fn color_type(&self) -> ColorType
Returns the color type of the image data produced by this decoder
Source§fn read_image(self, buf: &mut [u8]) -> ImageResult<()>
fn read_image(self, buf: &mut [u8]) -> ImageResult<()>
Returns all the bytes in the image. Read more
Source§fn read_image_boxed(self: Box<Self>, buf: &mut [u8]) -> ImageResult<()>
fn read_image_boxed(self: Box<Self>, buf: &mut [u8]) -> ImageResult<()>
Use
read_image
instead; this method is an implementation detail needed so the trait can
be object safe. Read moreSource§fn icc_profile(&mut self) -> ImageResult<Option<Vec<u8>>>
fn icc_profile(&mut self) -> ImageResult<Option<Vec<u8>>>
Returns the ICC color profile embedded in the image, or
Ok(None)
if the image does not have one. Read moreSource§fn exif_metadata(&mut self) -> ImageResult<Option<Vec<u8>>>
fn exif_metadata(&mut self) -> ImageResult<Option<Vec<u8>>>
Returns the raw Exif chunk, if it is present.
A third-party crate such as
kamadak-exif
is required to actually parse it. Read moreSource§fn orientation(&mut self) -> ImageResult<Orientation>
fn orientation(&mut self) -> ImageResult<Orientation>
Returns the orientation of the image. Read more
Source§fn original_color_type(&self) -> ExtendedColorType
fn original_color_type(&self) -> ExtendedColorType
Returns the color type of the image file before decoding
Source§fn total_bytes(&self) -> u64
fn total_bytes(&self) -> u64
Returns the total number of bytes in the decoded image. Read more
Source§fn set_limits(&mut self, limits: Limits) -> ImageResult<()>
fn set_limits(&mut self, limits: Limits) -> ImageResult<()>
Auto Trait Implementations§
impl<R> Freeze for WebPDecoder<R>where
R: Freeze,
impl<R> RefUnwindSafe for WebPDecoder<R>where
R: RefUnwindSafe,
impl<R> Send for WebPDecoder<R>where
R: Send,
impl<R> Sync for WebPDecoder<R>where
R: Sync,
impl<R> Unpin for WebPDecoder<R>where
R: Unpin,
impl<R> UnwindSafe for WebPDecoder<R>where
R: 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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more