SKImageFilter.CreateDropShadow Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- input
- SKImageFilter
- cropRect
- SKImageFilter.CropRect
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