Struct libjxl_sys::JxlColorEncoding[][src]

#[repr(C)]pub struct JxlColorEncoding {
    pub color_space: JxlColorSpace,
    pub white_point: JxlWhitePoint,
    pub white_point_xy: [f64; 2],
    pub primaries: JxlPrimaries,
    pub primaries_red_xy: [f64; 2],
    pub primaries_green_xy: [f64; 2],
    pub primaries_blue_xy: [f64; 2],
    pub transfer_function: JxlTransferFunction,
    pub gamma: f64,
    pub rendering_intent: JxlRenderingIntent,
}

Color encoding of the image as structured information.

Fields

color_space: JxlColorSpace

Color space of the image data.

white_point: JxlWhitePoint

Built-in white point. If this value is JXL_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: JxlPrimaries

Built-in RGB primaries. If this value is JXL_PRIMARIES_CUSTOM, must use the numerical primaries values below. This field and the custom values below are unused and must be ignored if the color space is JXL_COLOR_SPACE_GRAY or JXL_COLOR_SPACE_XYB.

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: JxlTransferFunction

Transfer function is have_gamma is 0

gamma: f64

Gamma value used when transfer_function is JXL_TRANSFER_FUNCTION_GAMMA

rendering_intent: JxlRenderingIntent

Rendering intent defined for the color profile.

Trait Implementations

impl Clone for JxlColorEncoding[src]

impl Copy for JxlColorEncoding[src]

impl Debug for JxlColorEncoding[src]

impl Default for JxlColorEncoding[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.