Struct image::codecs::qoi::QoiDecoder
source · pub struct QoiDecoder<R> { /* private fields */ }
Expand description
QOI decoder
Implementations§
source§impl<R> QoiDecoder<R>where
R: Read,
impl<R> QoiDecoder<R>where
R: Read,
sourcepub fn new(reader: R) -> ImageResult<Self>
pub fn new(reader: R) -> ImageResult<Self>
Creates a new decoder that decodes from the stream reader
Trait Implementations§
source§impl<R: Read> ImageDecoder for QoiDecoder<R>
impl<R: Read> ImageDecoder for QoiDecoder<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 original_color_type(&self) -> ExtendedColorType
fn original_color_type(&self) -> ExtendedColorType
Returns the color type of the image file before decoding
source§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 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 QoiDecoder<R>where
R: Freeze,
impl<R> RefUnwindSafe for QoiDecoder<R>where
R: RefUnwindSafe,
impl<R> Send for QoiDecoder<R>where
R: Send,
impl<R> Sync for QoiDecoder<R>where
R: Sync,
impl<R> Unpin for QoiDecoder<R>where
R: Unpin,
impl<R> UnwindSafe for QoiDecoder<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