LabColorSpace

Struct LabColorSpace 

Source
pub struct LabColorSpace {
    pub white_point: [f64; 3],
    pub black_point: [f64; 3],
    pub range: [f64; 4],
}
Expand description

CIE Lab color space (ISO 32000-1 §8.6.5.4)

Fields§

§white_point: [f64; 3]

White point in CIE XYZ coordinates [Xw, Yw, Zw] Default is D50 standard illuminant

§black_point: [f64; 3]

Black point in CIE XYZ coordinates [Xb, Yb, Zb]
Default is [0, 0, 0]

§range: [f64; 4]

Range for a* and b* components [a_min, a_max, b_min, b_max] Default is [-100, 100, -100, 100]

Implementations§

Source§

impl LabColorSpace

Source

pub fn new() -> Self

Create a new Lab color space with default parameters

Source

pub fn with_white_point(self, white_point: [f64; 3]) -> Self

Set the white point (CIE XYZ coordinates)

Source

pub fn with_black_point(self, black_point: [f64; 3]) -> Self

Set the black point (CIE XYZ coordinates)

Source

pub fn with_range(self, a_min: f64, a_max: f64, b_min: f64, b_max: f64) -> Self

Set the range for a* and b* components

Source

pub fn d50() -> Self

Common D50 illuminant (default)

Source

pub fn d65() -> Self

Common D65 illuminant

Source

pub fn to_pdf_array(&self) -> Vec<Object>

Convert to PDF color space array

Source

pub fn lab_to_xyz(&self, l: f64, a: f64, b: f64) -> [f64; 3]

Convert Lab values to CIE XYZ L* is in range [0, 100], a* and b* are typically in [-128, 127]

Source

pub fn xyz_to_lab(&self, x: f64, y: f64, z: f64) -> [f64; 3]

Convert CIE XYZ to Lab values

Source

pub fn lab_to_rgb(&self, l: f64, a: f64, b: f64) -> [f64; 3]

Convert Lab to approximate sRGB for display purposes This is a convenience method for visualization

Source

pub fn rgb_to_lab(&self, r: f64, g: f64, b: f64) -> [f64; 3]

Convert sRGB to Lab for convenience

Source

pub fn delta_e(&self, lab1: [f64; 3], lab2: [f64; 3]) -> f64

Calculate color difference (Delta E) between two Lab colors Uses CIE76 formula (Euclidean distance)

Source

pub fn delta_e_2000(&self, lab1: [f64; 3], lab2: [f64; 3]) -> f64

Calculate perceptual color difference (Delta E 2000) More accurate for small color differences

Trait Implementations§

Source§

impl Clone for LabColorSpace

Source§

fn clone(&self) -> LabColorSpace

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for LabColorSpace

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for LabColorSpace

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for LabColorSpace

Source§

fn eq(&self, other: &LabColorSpace) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for LabColorSpace

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.