Struct image::webp::WebPDecoder [−][src]
pub struct WebPDecoder<R> { /* fields omitted */ }WebP Image format decoder. Currently only supportes the luma channel (meaning that decoded images will be grayscale).
Implementations
impl<R: Read> WebPDecoder<R>[src]
impl<R: Read> WebPDecoder<R>[src]pub fn new(r: R) -> ImageResult<WebPDecoder<R>>[src]
Create a new WebPDecoder from the Reader r.
This function takes ownership of the Reader.
Trait Implementations
impl<'a, R: 'a + Read> ImageDecoder<'a> for WebPDecoder<R>[src]
impl<'a, R: 'a + Read> ImageDecoder<'a> for WebPDecoder<R>[src]type Reader = WebpReader<R>
The type of reader produced by into_reader.
fn dimensions(&self) -> (u32, u32)[src]
fn color_type(&self) -> ColorType[src]
fn into_reader(self) -> ImageResult<Self::Reader>[src]
fn read_image(self, buf: &mut [u8]) -> ImageResult<()>[src]
fn original_color_type(&self) -> ExtendedColorType[src]
fn total_bytes(&self) -> u64[src]
fn scanline_bytes(&self) -> u64[src]
fn read_image_with_progress<F: Fn(Progress)>(
self,
buf: &mut [u8],
progress_callback: F
) -> ImageResult<()>[src]
self,
buf: &mut [u8],
progress_callback: F
) -> ImageResult<()>
Auto Trait Implementations
impl<R> RefUnwindSafe for WebPDecoder<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for WebPDecoder<R> where
R: Send,
R: Send,
impl<R> Sync for WebPDecoder<R> where
R: Sync,
R: Sync,
impl<R> Unpin for WebPDecoder<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for WebPDecoder<R> where
R: UnwindSafe,
R: UnwindSafe,