[−][src]Struct jpegxl_sys::JxlColorEncoding
Color encoding of the image as structured information.
Fields
color_space: JxlColorSpaceColor space of the image data.
white_point: JxlWhitePointBuilt-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: JxlPrimariesBuilt-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: JxlTransferFunctionTransfer function is have_gamma is 0
gamma: f64Gamma value used when transfer_function is JXL_TRANSFER_FUNCTION_GAMMA
rendering_intent: JxlRenderingIntentRendering intent defined for the color profile.
Trait Implementations
impl Clone for JxlColorEncoding[src]
pub fn clone(&self) -> JxlColorEncoding[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for JxlColorEncoding[src]
impl Debug for JxlColorEncoding[src]
Auto Trait Implementations
impl RefUnwindSafe for JxlColorEncoding[src]
impl Send for JxlColorEncoding[src]
impl Sync for JxlColorEncoding[src]
impl Unpin for JxlColorEncoding[src]
impl UnwindSafe for JxlColorEncoding[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,