Struct image::codecs::hdr::HdrDecoder

source ·
pub struct HdrDecoder<R> {
    r: R,
    width: u32,
    height: u32,
    meta: HdrMetadata,
}
Expand description

An Radiance HDR decoder

Fields§

§r: R§width: u32§height: u32§meta: HdrMetadata

Implementations§

source§

impl<R: BufRead> HdrDecoder<R>

source

pub fn new(reader: R) -> ImageResult<HdrDecoder<R>>

Reads Radiance HDR image header from stream r if the header is valid, creates HdrDecoder strict mode is enabled

source

pub fn with_strictness(reader: R, strict: bool) -> ImageResult<HdrDecoder<R>>

Reads Radiance HDR image header from stream reader, if the header is valid, creates HdrDecoder.

strict enables strict mode

Warning! Reading wrong file in non-strict mode could consume file size worth of memory in the process.

source

pub fn metadata(&self) -> HdrMetadata

Returns file metadata. Refer to HdrMetadata for details.

source

pub fn read_image_native(self) -> ImageResult<Vec<Rgbe8Pixel>>

Consumes decoder and returns a vector of RGBE8 pixels

source

pub fn read_image_transform<T: Send, F: Send + Sync + Fn(Rgbe8Pixel) -> T>( self, f: F, output_slice: &mut [T] ) -> ImageResult<()>

Consumes decoder and returns a vector of transformed pixels

source

pub fn read_image_ldr(self) -> ImageResult<Vec<Rgb<u8>>>

Consumes decoder and returns a vector of Rgb<u8> pixels. scale = 1, gamma = 2.2

source

pub fn read_image_hdr(self) -> ImageResult<Vec<Rgb<f32>>>

Consumes decoder and returns a vector of Rgb<f32> pixels.

Trait Implementations§

source§

impl<R: Debug> Debug for HdrDecoder<R>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<R: Read> IntoIterator for HdrDecoder<R>

§

type Item = Result<Rgbe8Pixel, ImageError>

The type of the elements being iterated over.
§

type IntoIter = HdrImageDecoderIterator<R>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.