[][src]Struct jpegxl_sys::JpegxlColorEncoding

#[repr(C)]pub struct JpegxlColorEncoding {
    pub color_space: JpegxlColorSpace,
    pub white_point: JpegxlWhitePoint,
    pub white_point_xy: [f64; 2],
    pub primaries: JpegxlPrimaries,
    pub primaries_red_xy: [f64; 2],
    pub primaries_green_xy: [f64; 2],
    pub primaries_blue_xy: [f64; 2],
    pub transfer_function: JpegxlTransferFunction,
    pub gamma: f64,
    pub rendering_intent: JpegxlRenderingIntent,
}

Color encoding of the image as structured information.

Fields

color_space: JpegxlColorSpace

Color space of the image data.

white_point: JpegxlWhitePoint

Built-in white point. If this value is JPEGXL_WHITE_POINT_CUSTOM, must use the numerical whitepoint values from white_point_xy.

white_point_xy: [f64; 2]

Numerical whitepoint values in CIE xy space.

primaries: JpegxlPrimaries

Built-in RGB primaries. If this value is JPEGXL_PRIMARIES_CUSTOM, must use the numerical primaries values below. This field must be ignored if the color space is grayscale.

primaries_red_xy: [f64; 2]

Numerical red primary values in CIE xy space.

primaries_green_xy: [f64; 2]

Numerical green primary values in CIE xy space.

primaries_blue_xy: [f64; 2]

Numerical blue primary values in CIE xy space.

transfer_function: JpegxlTransferFunction

Transfer function is have_gamma is 0

gamma: f64

Gamma value used when transfer_function is JPEGXL_TRANSFER_FUNCTION_GAMMA

rendering_intent: JpegxlRenderingIntent

Rendering intent defined for the color profile.

Trait Implementations

impl Clone for JpegxlColorEncoding[src]

impl Copy for JpegxlColorEncoding[src]

impl Debug for JpegxlColorEncoding[src]

impl NewUninit for JpegxlColorEncoding[src]

Auto Trait Implementations

Blanket Implementations

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.