OpenRasterDecoder

Struct OpenRasterDecoder 

Source
pub struct OpenRasterDecoder<'a, R>
where R: Read + Seek + 'a,
{ /* private fields */ }

Implementations§

Source§

impl<'a, R> OpenRasterDecoder<'a, R>
where R: Read + Seek + 'a,

Source

pub fn with_limits( r: R, limits: Limits, ) -> Result<OpenRasterDecoder<'a, R>, ImageError>

Create a new OpenRasterDecoder with the provided limits.

(Limits need to be specified in advance, because determining the minimum information needed for the ImageDecoder trait (image size and color type) may require reading through and remembering image-dependent amount of data.)

Warning: While decoding limits apply to the header parsing and decoding of the merged imaged component (a PNG file inside the ZIP archive that forms an OpenRaster file), memory constraints on the ZIP file decoding process have not yet been implemented; input ZIP files with very many entries may require significant amounts of memory to read.

Trait Implementations§

Source§

impl<'a, R: Read + Seek + 'a> ImageDecoder for OpenRasterDecoder<'a, R>

Source§

fn dimensions(&self) -> (u32, u32)

Returns a tuple containing the width and height of the image
Source§

fn color_type(&self) -> ColorType

Returns the color type of the image data produced by this decoder
Source§

fn original_color_type(&self) -> ExtendedColorType

Returns the color type of the image file before decoding
Source§

fn set_limits(&mut self, limits: Limits) -> ImageResult<()>

Set the decoder to have the specified limits. See Limits for the different kinds of limits that is possible to set. Read more
Source§

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 more
Source§

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 more
Source§

fn orientation(&mut self) -> ImageResult<Orientation>

Returns the orientation of the image. Read more
Source§

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<()>

Use read_image instead; this method is an implementation detail needed so the trait can be object safe. Read more
Source§

fn xmp_metadata(&mut self) -> Result<Option<Vec<u8>>, ImageError>

Returns the raw XMP chunk, if it is present. A third-party crate such as roxmltree is required to actually parse it. Read more
Source§

fn iptc_metadata(&mut self) -> Result<Option<Vec<u8>>, ImageError>

Returns the raw IPTC chunk, if it is present. Read more
Source§

fn total_bytes(&self) -> u64

Returns the total number of bytes in the decoded image. Read more

Auto Trait Implementations§

§

impl<'a, R> !Freeze for OpenRasterDecoder<'a, R>

§

impl<'a, R> !RefUnwindSafe for OpenRasterDecoder<'a, R>

§

impl<'a, R> Send for OpenRasterDecoder<'a, R>
where R: Sync + Send,

§

impl<'a, R> Sync for OpenRasterDecoder<'a, R>
where R: Sync,

§

impl<'a, R> Unpin for OpenRasterDecoder<'a, R>

§

impl<'a, R> !UnwindSafe for OpenRasterDecoder<'a, R>

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

impl<T, U> TryFrom<U> for T
where 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>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where 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>

Performs the conversion.