Struct image::hdr::RGBE8Pixel  
                   
                       [−]
                   
               [src]
pub struct RGBE8Pixel {
    pub c: [u8; 3],
    pub e: u8,
}Refer to wikipedia
Fields
c: [u8; 3]
                           Color components
e: u8
                           Exponent
Methods
impl RGBE8Pixel[src]
fn to_hdr(self) -> Rgb<f32>
Converts RGBE8Pixel into Rgb<f32> linearly
fn to_ldr<T: Primitive + Zero>(self) -> Rgb<T>
Converts RGBE8Pixel into Rgb<T> with scale=1 and gamma=2.2
color_ldr = (color_hdr*scale)gamma
Panic
Panics when T::max_value() cannot be represented as f32.  
fn to_ldr_scale_gamma<T: Primitive + Zero>(self, scale: f32, gamma: f32) -> Rgb<T>
Converts RGBE8Pixel into Rgb
color_ldr = (color_hdr*scale)gamma
Panic
Panics when T::max_value() cannot be represented as f32. Panics when scale or gamma is NaN
Trait Implementations
impl Eq for RGBE8Pixel[src]
impl PartialEq for RGBE8Pixel[src]
fn eq(&self, __arg_0: &RGBE8Pixel) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &RGBE8Pixel) -> bool
This method tests for !=.
impl Debug for RGBE8Pixel[src]
impl Copy for RGBE8Pixel[src]
impl Clone for RGBE8Pixel[src]
fn clone(&self) -> RGBE8Pixel
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more