Struct png::decoder::read_decoder::ReadDecoder

source ·
pub(crate) struct ReadDecoder<R: Read> {
    reader: BufReader<R>,
    decoder: StreamingDecoder,
}
Expand description

Helper for encapsulating reading input from Read and feeding it into a StreamingDecoder while hiding low-level Decoded events and only exposing a few high-level reading operations like:

  • read_header_info - reading until IHDR chunk
  • read_until_image_data - reading until IDAT / fdAT sequence
  • decode_image_data - reading from IDAT / fdAT sequence into Vec<u8>
  • finish_decoding_image_data() - discarding remaining data from IDAT / fdAT sequence
  • read_until_end_of_input() - reading until IEND chunk

Fields§

§reader: BufReader<R>§decoder: StreamingDecoder

Implementations§

source§

impl<R: Read> ReadDecoder<R>

source

pub fn new(r: R) -> Self

source

pub fn with_options(r: R, options: DecodeOptions) -> Self

source

pub fn set_limits(&mut self, limits: Limits)

source

pub fn reserve_bytes(&mut self, bytes: usize) -> Result<(), DecodingError>

source

pub fn set_ignore_text_chunk(&mut self, ignore_text_chunk: bool)

source

pub fn set_ignore_iccp_chunk(&mut self, ignore_iccp_chunk: bool)

source

pub fn ignore_checksums(&mut self, ignore_checksums: bool)

source

fn decode_next( &mut self, image_data: &mut Vec<u8>, ) -> Result<Decoded, DecodingError>

Returns the next decoded chunk. If the chunk is an ImageData chunk, its contents are written into image_data.

source

fn decode_next_without_image_data(&mut self) -> Result<Decoded, DecodingError>

source

fn decode_next_and_discard_image_data( &mut self, ) -> Result<Decoded, DecodingError>

source

pub fn read_header_info(&mut self) -> Result<&Info<'static>, DecodingError>

Reads until the end of IHDR chunk.

Prerequisite: None (idempotent).

source

pub fn read_until_image_data(&mut self) -> Result<(), DecodingError>

Reads until the start of the next IDAT or fdAT chunk.

Prerequisite: Not within IDAT / fdAT chunk sequence.

source

pub fn decode_image_data( &mut self, image_data: &mut Vec<u8>, ) -> Result<ImageDataCompletionStatus, DecodingError>

Reads image_data and reports whether there may be additional data afterwards (i.e. if it is okay to call decode_image_data and/or finish_decoding_image_data again)..

Prerequisite: Input is currently positioned within IDAT / fdAT chunk sequence.

source

pub fn finish_decoding_image_data(&mut self) -> Result<(), DecodingError>

Consumes and discards the rest of an IDAT / fdAT chunk sequence.

Prerequisite: Input is currently positioned within IDAT / fdAT chunk sequence.

source

pub fn read_until_end_of_input(&mut self) -> Result<(), DecodingError>

Reads until the IEND chunk.

Prerequisite: IEND chunk hasn’t been reached yet.

source

pub fn info(&self) -> Option<&Info<'static>>

Auto Trait Implementations§

§

impl<R> Freeze for ReadDecoder<R>
where R: Freeze,

§

impl<R> RefUnwindSafe for ReadDecoder<R>
where R: RefUnwindSafe,

§

impl<R> Send for ReadDecoder<R>
where R: Send,

§

impl<R> Sync for ReadDecoder<R>
where R: Sync,

§

impl<R> Unpin for ReadDecoder<R>
where R: Unpin,

§

impl<R> UnwindSafe for ReadDecoder<R>
where R: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.