Struct palette::blend::PreAlpha [] [src]

pub struct PreAlpha<C, T: Float> {
    pub color: C,
    pub alpha: T,
}

Premultiplied alpha wrapper.

Premultiplied colors are commonly used in composition algorithms to simplify the calculations. It may also be preferred when interpolating between colors, which is one of the reasons why it's offered as a separate type. The other reason is to make it easier to avoid unnecessary computations in composition chains.

use palette::{Blend, Rgb, Rgba};
use palette::blend::PreAlpha;

let a = PreAlpha::from(Rgba::new(0.4, 0.5, 0.5, 0.3));
let b = PreAlpha::from(Rgba::new(0.3, 0.8, 0.4, 0.4));
let c = PreAlpha::from(Rgba::new(0.7, 0.1, 0.8, 0.8));

let res = Rgb::from_premultiplied(a.screen(b).overlay(c));

Note that converting to and from premultiplied alpha will cause the alpha component to be clamped to [0.0, 1.0].

Fields

The premultiplied color components (original.color * original.alpha).

The transparency component. 0.0 is fully transparent and 1.0 is fully opaque.

Trait Implementations

impl<C: Clone, T: Clone + Float> Clone for PreAlpha<C, T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<C: Copy, T: Copy + Float> Copy for PreAlpha<C, T>
[src]

impl<C: PartialEq, T: PartialEq + Float> PartialEq for PreAlpha<C, T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<C: Debug, T: Debug + Float> Debug for PreAlpha<C, T>
[src]

Formats the value using the given formatter.

impl<C, T> From<Alpha<C, T>> for PreAlpha<C, T> where
    C: ComponentWise<Scalar = T>,
    T: Float
[src]

Performs the conversion.

impl<C, T> Blend for PreAlpha<C, T> where
    C: Blend<Color = C> + ComponentWise<Scalar = T>,
    T: Float
[src]

The core color type. Typically Self for color types without alpha.

Convert the color to premultiplied alpha.

Convert the color from premultiplied alpha.

Blend self, as the source color, with destination, using blend_function. Anything that implements BlendFunction is acceptable, including functions and closures. Read more

Place self over other. This is the good old common alpha composition equation. Read more

Results in the parts of self that overlaps the visible parts of other. Read more

Results in the parts of self that lies outside the visible parts of other. Read more

Place self over only the visible parts of other.

Results in either self or other, where they do not overlap.

Add self and other. This uses the alpha component to regulate the effect, so it's not just plain component wise addition. Read more

Multiply self with other. This uses the alpha component to regulate the effect, so it's not just plain component wise multiplication. Read more

Make a color which is at least as light as self or other.

Multiply self or other if other is dark, or screen them if other is light. This results in an S curve. Read more

Return the darkest parts of self and other.

Return the lightest parts of self and other.

Lighten other to reflect self. Results in other if self is black. Read more

Darken other to reflect self. Results in other if self is white. Read more

Multiply self or other if other is dark, or screen them if self is light. This is similar to overlay, but depends on self instead of other. Read more

Lighten other if self is light, or darken other as if it's burned if self is dark. The effect is increased if the components of self is further from 0.5. Read more

Return the absolute difference between self and other. It's basically abs(self - other), but regulated by the alpha component. Read more

Similar to difference, but appears to result in a lower contrast. other is inverted if self is white, and preserved if self is black. Read more

impl<C: Mix> Mix for PreAlpha<C, C::Scalar>
[src]

The type of the mixing factor.

Mix the color with an other color, by factor. Read more

impl<C: ComponentWise<Scalar = T>, T: Float> ComponentWise for PreAlpha<C, T>
[src]

The scalar type for color components.

Perform a binary operation on this and an other color.

Perform a unary operation on this color.

impl<C, T> ApproxEq for PreAlpha<C, T> where
    C: ApproxEq<Epsilon = T::Epsilon>,
    T: ApproxEq + Float,
    T::Epsilon: Copy
[src]

Used for specifying relative comparisons.

The default tolerance to use when testing values that are close together. Read more

The default relative tolerance for testing values that are far-apart. Read more

The default ULPs to tolerate when testing values that are far-apart. Read more

A test for equality that uses a relative comparison if the values are far apart.

A test for equality that uses units in the last place (ULP) if the values are far apart.

The inverse of ApproxEq::relative_eq.

The inverse of ApproxEq::ulps_eq.

impl<C: Add, T: Float> Add for PreAlpha<C, T>
[src]

The resulting type after applying the + operator

The method for the + operator

impl<T: Float, C: Add<T>> Add<T> for PreAlpha<C, T>
[src]

The resulting type after applying the + operator

The method for the + operator

impl<C: Sub, T: Float> Sub for PreAlpha<C, T>
[src]

The resulting type after applying the - operator

The method for the - operator

impl<T: Float, C: Sub<T>> Sub<T> for PreAlpha<C, T>
[src]

The resulting type after applying the - operator

The method for the - operator

impl<C: Mul, T: Float> Mul for PreAlpha<C, T>
[src]

The resulting type after applying the * operator

The method for the * operator

impl<T: Float, C: Mul<T>> Mul<T> for PreAlpha<C, T>
[src]

The resulting type after applying the * operator

The method for the * operator

impl<C: Div, T: Float> Div for PreAlpha<C, T>
[src]

The resulting type after applying the / operator

The method for the / operator

impl<T: Float, C: Div<T>> Div<T> for PreAlpha<C, T>
[src]

The resulting type after applying the / operator

The method for the / operator

impl<C, T: Float> Deref for PreAlpha<C, T>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<C, T: Float> DerefMut for PreAlpha<C, T>
[src]

The method called to mutably dereference a value