[−][src]Struct png::Decoder
PNG Decoder
Methods
impl<R: Read> Decoder<R>
[src]
pub fn new(r: R) -> Decoder<R>
[src]
pub fn new_with_limits(r: R, l: Limits) -> Decoder<R>
[src]
pub fn set_limits(&mut self, limits: Limits)
[src]
Images that are considered too big
use std::fs::File; use png::{Decoder, Limits}; // This image is 32x32 pixels, so it's more than four pixels in size. let mut limits = Limits::default(); limits.pixels = 4; let mut decoder = Decoder::new_with_limits(File::open("tests/pngsuite/basi0g01.png").unwrap(), limits); assert!(decoder.read_info().is_err()); // This image is 32x32 pixels, so it's exactly 1024 pixels in size. let mut limits = Limits::default(); limits.pixels = 1024; let mut decoder = Decoder::new_with_limits(File::open("tests/pngsuite/basi0g01.png").unwrap(), limits); assert!(decoder.read_info().is_ok());
pub fn read_info(self) -> Result<(OutputInfo, Reader<R>), DecodingError>
[src]
Reads all meta data until the first IDAT chunk
Trait Implementations
impl<R: Read> Parameter<Decoder<R>> for Transformations
[src]
impl<R: Read> HasParameters for Decoder<R>
[src]
Auto Trait Implementations
impl<R> Send for Decoder<R> where
R: Send,
R: Send,
impl<R> Unpin for Decoder<R> where
R: Unpin,
R: Unpin,
impl<R> Sync for Decoder<R> where
R: Sync,
R: Sync,
impl<R> UnwindSafe for Decoder<R> where
R: UnwindSafe,
R: UnwindSafe,
impl<R> RefUnwindSafe for Decoder<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,