SKImageFilter.CreateDropShadow Method

Definition

Overloads

CreateDropShadow(Single, Single, Single, Single, SKColor, SKImageFilter, SKImageFilter+CropRect)
CreateDropShadow(Single, Single, Single, Single, SKColor, SKDropShadowImageFilterShadowMode, SKImageFilter, SKImageFilter+CropRect)
Obsolete.

Creates an image filter that applies a drop shadow.

CreateDropShadow(Single, Single, Single, Single, SKColor, SKImageFilter, SKImageFilter+CropRect)

public static SkiaSharp.SKImageFilter CreateDropShadow (float dx, float dy, float sigmaX, float sigmaY, SkiaSharp.SKColor color, SkiaSharp.SKImageFilter input = default, SkiaSharp.SKImageFilter.CropRect cropRect = default);

Parameters

dx
Single
dy
Single
sigmaX
Single
sigmaY
Single
color
SKColor

Returns

Applies to

CreateDropShadow(Single, Single, Single, Single, SKColor, SKDropShadowImageFilterShadowMode, SKImageFilter, SKImageFilter+CropRect)

Caution

Use CreateDropShadow or CreateDropShadowOnly instead.

Creates an image filter that applies a drop shadow.

public static SkiaSharp.SKImageFilter CreateDropShadow (float dx, float dy, float sigmaX, float sigmaY, SkiaSharp.SKColor color, SkiaSharp.SKDropShadowImageFilterShadowMode shadowMode, SkiaSharp.SKImageFilter input = default, SkiaSharp.SKImageFilter.CropRect cropRect = default);
[System.Obsolete("Use CreateDropShadow or CreateDropShadowOnly instead.")]
public static SkiaSharp.SKImageFilter CreateDropShadow (float dx, float dy, float sigmaX, float sigmaY, SkiaSharp.SKColor color, SkiaSharp.SKDropShadowImageFilterShadowMode shadowMode, SkiaSharp.SKImageFilter input = default, SkiaSharp.SKImageFilter.CropRect cropRect = default);

Parameters

dx
Single

The shadow offset in the x-direction.

dy
Single

The shadow offset in the y-direction.

sigmaX
Single

The amount to blur in the x-direction.

sigmaY
Single

The amount to blur in the y-direction.

color
SKColor

The shadow color.

shadowMode
SKDropShadowImageFilterShadowMode

The shadow mode.

input
SKImageFilter

The input filter to use.

cropRect
SKImageFilter.CropRect

The rectangle to which the output processing will be limited.

Returns

Returns the new SKImageFilter, or null on error.

Attributes

Applies to