Struct AlphaColor

Source
#[repr(transparent)]
pub struct AlphaColor<CS> { pub components: [f32; 4], pub cs: PhantomData<CS>, }
Expand description

A color with an alpha channel.

A color in a color space known at compile time, with an alpha channel.

See OpaqueColor for a discussion of arithmetic traits and interpolation.

Fields§

§components: [f32; 4]

The components, which may be manipulated directly.

The interpretation of the first three components depends on the color space. The fourth component is separate alpha.

§cs: PhantomData<CS>

The color space.

Implementations§

Source§

impl<CS: ColorSpace> AlphaColor<CS>

Source

pub const BLACK: Self

A black color.

More comprehensive pre-defined colors are available in the color::palette module.

Source

pub const TRANSPARENT: Self

A transparent color.

This is a black color with full alpha.

More comprehensive pre-defined colors are available in the color::palette module.

Source

pub const WHITE: Self

A white color.

This value is specific to the color space.

More comprehensive pre-defined colors are available in the color::palette module.

Source

pub const fn new(components: [f32; 4]) -> Self

Create a new color from the given components.

Source

pub const fn split(self) -> (OpaqueColor<CS>, f32)

Split into opaque and alpha components.

This function is the inverse of OpaqueColor::with_alpha.

Source

pub const fn with_alpha(self, alpha: f32) -> Self

Set the alpha channel.

This replaces the existing alpha channel. To scale or or otherwise modify the existing alpha channel, use AlphaColor::multiply_alpha or AlphaColor::map.

let c = color::palette::css::GOLDENROD.with_alpha(0.5);
assert_eq!(0.5, c.split().1);
Source

pub const fn discard_alpha(self) -> OpaqueColor<CS>

Split out the opaque components, discarding the alpha.

This is a shorthand for calling split.

Source

pub fn convert<TargetCs: ColorSpace>(self) -> AlphaColor<TargetCs>

Convert a color into a different color space.

Source

pub const fn premultiply(self) -> PremulColor<CS>

Convert a color to the corresponding premultiplied form.

Source

pub fn lerp_rect(self, other: Self, t: f32) -> Self

Linearly interpolate colors, without hue fixup.

This method produces meaningful results in rectangular color spaces, or if hue fixup has been applied.

Source

pub fn lerp(self, other: Self, t: f32, direction: HueDirection) -> Self

Linearly interpolate colors, with hue fixup if needed.

Source

pub const fn multiply_alpha(self, rhs: f32) -> Self

Multiply alpha by the given factor.

Source

pub fn scale_chroma(self, scale: f32) -> Self

Scale the chroma by the given amount.

See ColorSpace::scale_chroma for more details.

Source

pub fn map(self, f: impl Fn(f32, f32, f32, f32) -> [f32; 4]) -> Self

Map components.

Source

pub fn map_in<TargetCS: ColorSpace>( self, f: impl Fn(f32, f32, f32, f32) -> [f32; 4], ) -> Self

Map components in a given color space.

Source

pub fn map_lightness(self, f: impl Fn(f32) -> f32) -> Self

Map the lightness of the color.

In a color space that naturally has a lightness component, map that value. Otherwise, do the mapping in Oklab. The lightness range is normalized so that 1.0 is white. That is the normal range for Oklab but differs from the range in Lab, Lch, and Hsl.

§Examples
use color::{AlphaColor, Lab};

let color = AlphaColor::<Lab>::new([40., 4., -17., 1.]);
let lighter = color.map_lightness(|l| l + 0.2);
let expected = AlphaColor::<Lab>::new([60., 4., -17., 1.]);

assert!(lighter.premultiply().difference(expected.premultiply()) < 1e-4);
Source

pub fn map_hue(self, f: impl Fn(f32) -> f32) -> Self

Map the hue of the color.

In a color space that naturally has a hue component, map that value. Otherwise, do the mapping in Oklch. The hue is in degrees.

§Examples
use color::{AlphaColor, Oklab};

let color = AlphaColor::<Oklab>::new([0.5, 0.2, -0.1, 1.]);
let complementary = color.map_hue(|h| (h + 180.) % 360.);
let expected = AlphaColor::<Oklab>::new([0.5, -0.2, 0.1, 1.]);

assert!(complementary.premultiply().difference(expected.premultiply()) < 1e-4);
Source

pub fn to_rgba8(self) -> Rgba8

Convert the color to sRGB if not already in sRGB, and pack into 8 bit per component integer encoding.

The RGBA components are mapped from the floating point range of 0.0-1.0 to the integer range of 0-255. Component values outside of this range are saturated to 0 or 255.

§Implementation note

This performs almost-correct rounding to be fast on both x86 and AArch64 hardware. Within the saturated output range of this method, 0-255, there is a single color component value where results differ: 0.0019607842. This method maps that component to integer value 1; it would more precisely be mapped to 0.

Source§

impl AlphaColor<Srgb>

Source

pub const fn from_rgba8(r: u8, g: u8, b: u8, a: u8) -> Self

Create a color from 8-bit rgba values.

Note: for conversion from the Rgba8 type, just use the From trait.

Source

pub const fn from_rgb8(r: u8, g: u8, b: u8) -> Self

Create a color from 8-bit rgb values with an opaque alpha.

Note: for conversion from the Rgba8 type, just use the From trait.

Trait Implementations§

Source§

impl<CS: ColorSpace> Add for AlphaColor<CS>

Component-wise addition of components.

Source§

type Output = AlphaColor<CS>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
Source§

impl<CS> BitEq for AlphaColor<CS>

Source§

fn bit_eq(&self, other: &Self) -> bool

Returns true if self is equal to other. Read more
Source§

impl<CS> BitHash for AlphaColor<CS>

Source§

fn bit_hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher.
Source§

impl<CS: Clone> Clone for AlphaColor<CS>

Source§

fn clone(&self) -> AlphaColor<CS>

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<CS: Debug> Debug for AlphaColor<CS>

Source§

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

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

impl<CS: ColorSpace> Div<f32> for AlphaColor<CS>

Divide components by a scalar.

Source§

type Output = AlphaColor<CS>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f32) -> Self

Performs the / operation. Read more
Source§

impl<CS: ColorSpace> From<AlphaColor<CS>> for DynamicColor
where ColorSpaceTag: From<CS>,

Note that the conversion is only lossless for color spaces that have a corresponding tag. This is why we have this additional trait bound. See also https://github.com/linebender/color/pull/155 for more discussion.

Source§

fn from(value: AlphaColor<CS>) -> Self

Converts to this type from the input type.
Source§

impl<CS: ColorSpace> From<OpaqueColor<CS>> for AlphaColor<CS>

Source§

fn from(value: OpaqueColor<CS>) -> Self

Converts to this type from the input type.
Source§

impl From<Rgba8> for AlphaColor<Srgb>

Source§

fn from(value: Rgba8) -> Self

Converts to this type from the input type.
Source§

impl<CS: ColorSpace> FromStr for AlphaColor<CS>

Source§

type Err = ParseError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl<CS: ColorSpace> Mul<AlphaColor<CS>> for f32

Multiply components by a scalar.

Source§

type Output = AlphaColor<CS>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: AlphaColor<CS>) -> Self::Output

Performs the * operation. Read more
Source§

impl<CS: ColorSpace> Mul<f32> for AlphaColor<CS>

Multiply components by a scalar.

Source§

type Output = AlphaColor<CS>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f32) -> Self

Performs the * operation. Read more
Source§

impl<CS: ColorSpace> PartialEq for AlphaColor<CS>

Source§

fn eq(&self, other: &Self) -> 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<CS: ColorSpace> Sub for AlphaColor<CS>

Component-wise subtraction of components.

Source§

type Output = AlphaColor<CS>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
Source§

impl<CS: ColorSpace> TransparentWrapper<[f32; 4]> for AlphaColor<CS>

Source§

fn wrap(s: Inner) -> Self
where Self: Sized,

Convert the inner type into the wrapper type.
Source§

fn wrap_ref(s: &Inner) -> &Self

Convert a reference to the inner type into a reference to the wrapper type.
Source§

fn wrap_mut(s: &mut Inner) -> &mut Self

Convert a mutable reference to the inner type into a mutable reference to the wrapper type.
Source§

fn wrap_slice(s: &[Inner]) -> &[Self]
where Self: Sized,

Convert a slice to the inner type into a slice to the wrapper type.
Source§

fn wrap_slice_mut(s: &mut [Inner]) -> &mut [Self]
where Self: Sized,

Convert a mutable slice to the inner type into a mutable slice to the wrapper type.
Source§

fn peel(s: Self) -> Inner
where Self: Sized,

Convert the wrapper type into the inner type.
Source§

fn peel_ref(s: &Self) -> &Inner

Convert a reference to the wrapper type into a reference to the inner type.
Source§

fn peel_mut(s: &mut Self) -> &mut Inner

Convert a mutable reference to the wrapper type into a mutable reference to the inner type.
Source§

fn peel_slice(s: &[Self]) -> &[Inner]
where Self: Sized,

Convert a slice to the wrapped type into a slice to the inner type.
Source§

fn peel_slice_mut(s: &mut [Self]) -> &mut [Inner]
where Self: Sized,

Convert a mutable slice to the wrapped type into a mutable slice to the inner type.
Source§

impl<CS: ColorSpace> Zeroable for AlphaColor<CS>

Source§

fn zeroed() -> Self

Source§

impl<CS: Copy> Copy for AlphaColor<CS>

Source§

impl<CS: ColorSpace> Pod for AlphaColor<CS>

Auto Trait Implementations§

§

impl<CS> Freeze for AlphaColor<CS>

§

impl<CS> RefUnwindSafe for AlphaColor<CS>
where CS: RefUnwindSafe,

§

impl<CS> Send for AlphaColor<CS>
where CS: Send,

§

impl<CS> Sync for AlphaColor<CS>
where CS: Sync,

§

impl<CS> Unpin for AlphaColor<CS>
where CS: Unpin,

§

impl<CS> UnwindSafe for AlphaColor<CS>
where CS: UnwindSafe,

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> CheckedBitPattern for T
where T: AnyBitPattern,

Source§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
Source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
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<I, T> TransparentWrapperAlloc<I> for T
where T: TransparentWrapper<I> + ?Sized, I: ?Sized,

Source§

fn wrap_vec(s: Vec<Inner>) -> Vec<Self>
where Self: Sized,

Convert a vec of the inner type into a vec of the wrapper type.
Source§

fn wrap_box(s: Box<Inner>) -> Box<Self>

Convert a box to the inner type into a box to the wrapper type.
Source§

fn wrap_rc(s: Rc<Inner>) -> Rc<Self>

Convert an Rc to the inner type into an Rc to the wrapper type.
Source§

fn wrap_arc(s: Arc<Inner>) -> Arc<Self>

Convert an Arc to the inner type into an Arc to the wrapper type.
Source§

fn peel_vec(s: Vec<Self>) -> Vec<Inner>
where Self: Sized,

Convert a vec of the wrapper type into a vec of the inner type.
Source§

fn peel_box(s: Box<Self>) -> Box<Inner>

Convert a box to the wrapper type into a box to the inner type.
Source§

fn peel_rc(s: Rc<Self>) -> Rc<Inner>

Convert an Rc to the wrapper type into an Rc to the inner type.
Source§

fn peel_arc(s: Arc<Self>) -> Arc<Inner>

Convert an Arc to the wrapper type into an Arc to the inner type.
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.
Source§

impl<T> AnyBitPattern for T
where T: Pod,

Source§

impl<T> NoUninit for T
where T: Pod,