Skip to main content

ImageFilter

Enum ImageFilter 

Source
pub enum ImageFilter {
    Blur {
        sigma_x: f32,
        sigma_y: f32,
    },
    Color(ColorFilter),
    DropShadow {
        offset: Point,
        sigma_x: f32,
        sigma_y: f32,
        color: Color,
    },
    Compose {
        outer: Arc<ImageFilter>,
        inner: Arc<ImageFilter>,
    },
}
Expand description

ImageFilter transforms a rasterized draw or layer.

In a composition, the inner filter runs first and feeds the outer filter.

Variants§

§

Blur

Blur applies a Gaussian blur in local x and y units.

Fields

§sigma_x: f32

sigma_x is the horizontal standard deviation.

§sigma_y: f32

sigma_y is the vertical standard deviation.

§

Color(ColorFilter)

Color applies a color filter after rasterization.

§

DropShadow

DropShadow composites the input over a blurred, colored copy of its alpha.

Fields

§offset: Point

offset moves the shadow in local coordinates.

§sigma_x: f32

sigma_x is the horizontal standard deviation.

§sigma_y: f32

sigma_y is the vertical standard deviation.

§color: Color

color colors the shadow.

§

Compose

Compose applies inner and then outer.

Fields

§outer: Arc<ImageFilter>

outer receives the filtered result of inner.

§inner: Arc<ImageFilter>

inner receives the original input.

Implementations§

Source§

impl ImageFilter

Source

pub fn blur(sigma_x: f32, sigma_y: f32) -> Self

blur creates a Gaussian image filter with nonnegative sigmas.

Source

pub fn color(filter: ColorFilter) -> Self

color creates an image filter from a color filter.

Source

pub fn compose(outer: ImageFilter, inner: ImageFilter) -> Self

compose applies inner first and outer second.

Source

pub fn drop_shadow( offset: Point, sigma_x: f32, sigma_y: f32, color: Color, ) -> Self

drop_shadow creates a shadow that retains the original input.

Source

pub fn is_nop(&self) -> bool

is_nop reports whether the filter leaves every input pixel unchanged.

Source

pub fn padding(&self) -> [f32; 2]

padding returns conservative local x and y expansion for this filter.

Source

pub fn modifies_transparent_black(&self) -> bool

modifies_transparent_black reports whether this filter can create visible output from a transparent input pixel.

Trait Implementations§

Source§

impl Clone for ImageFilter

Source§

fn clone(&self) -> ImageFilter

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for ImageFilter

Source§

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

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

impl PartialEq for ImageFilter

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ImageFilter

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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> Downcast<T> for T

Source§

fn downcast(&self) -> &T

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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

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.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,