[][src]Struct nannou::image::hdr::HdrDecoder

pub struct HdrDecoder<R> { /* fields omitted */ }

An Radiance HDR decoder

Implementations

impl<R> HdrDecoder<R> where
    R: BufRead
[src]

pub fn new(reader: R) -> Result<HdrDecoder<R>, ImageError>[src]

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

pub fn with_strictness(
    reader: R,
    strict: bool
) -> Result<HdrDecoder<R>, ImageError>
[src]

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.

pub fn metadata(&self) -> HdrMetadata[src]

Returns file metadata. Refer to HDRMetadata for details.

pub fn read_image_native(self) -> Result<Vec<Rgbe8Pixel>, ImageError>[src]

Consumes decoder and returns a vector of RGBE8 pixels

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

Consumes decoder and returns a vector of transformed pixels

pub fn read_image_ldr(self) -> Result<Vec<Rgb<u8>>, ImageError>[src]

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

pub fn read_image_hdr(self) -> Result<Vec<Rgb<f32>>, ImageError>[src]

Consumes decoder and returns a vector of Rgb pixels.

Trait Implementations

impl<R> Debug for HdrDecoder<R> where
    R: Debug
[src]

impl<R> IntoIterator for HdrDecoder<R> where
    R: BufRead
[src]

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?

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

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> SetParameter for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,