Edit

SKImageFilter.CreateBlendMode Method

Definition

Overloads

Name Description
CreateBlendMode(SKBlender, SKImageFilter)

Creates an image filter that blends two images using the specified blend mode.

CreateBlendMode(SKBlendMode, SKImageFilter)

Creates an image filter that blends two images using the specified blend mode.

CreateBlendMode(SKBlender, SKImageFilter, SKImageFilter)

Creates an image filter that blends two images using the specified blend mode.

CreateBlendMode(SKBlendMode, SKImageFilter, SKImageFilter)

Creates an image filter that blends two images using the specified blend mode.

CreateBlendMode(SKBlender, SKImageFilter, SKImageFilter, SKRect)

Creates an image filter that blends two images using the specified blend mode.

CreateBlendMode(SKBlendMode, SKImageFilter, SKImageFilter, SKRect)

Creates an image filter that blends two images using the specified blend mode.

CreateBlendMode(SKBlender, SKImageFilter)

Creates an image filter that blends two images using the specified blend mode.

public static SkiaSharp.SKImageFilter CreateBlendMode(SkiaSharp.SKBlender blender, SkiaSharp.SKImageFilter? background);

Parameters

blender
SKBlender

The custom blender to use.

background
SKImageFilter

The background image filter, or null to use the source bitmap.

Returns

Returns the new SKImageFilter, or null on error.

Applies to

CreateBlendMode(SKBlendMode, SKImageFilter)

Creates an image filter that blends two images using the specified blend mode.

public static SkiaSharp.SKImageFilter CreateBlendMode(SkiaSharp.SKBlendMode mode, SkiaSharp.SKImageFilter? background);

Parameters

mode
SKBlendMode

The blend mode to use.

background
SKImageFilter

The background image filter, or null to use the source bitmap.

Returns

Returns the new SKImageFilter, or null on error.

Applies to

CreateBlendMode(SKBlender, SKImageFilter, SKImageFilter)

Creates an image filter that blends two images using the specified blend mode.

public static SkiaSharp.SKImageFilter CreateBlendMode(SkiaSharp.SKBlender blender, SkiaSharp.SKImageFilter? background, SkiaSharp.SKImageFilter? foreground);

Parameters

blender
SKBlender

The custom blender to use.

background
SKImageFilter

The background image filter, or null to use the source bitmap.

foreground
SKImageFilter

The foreground image filter, or null to use the source bitmap.

Returns

Returns the new SKImageFilter, or null on error.

Applies to

CreateBlendMode(SKBlendMode, SKImageFilter, SKImageFilter)

Creates an image filter that blends two images using the specified blend mode.

public static SkiaSharp.SKImageFilter CreateBlendMode(SkiaSharp.SKBlendMode mode, SkiaSharp.SKImageFilter? background, SkiaSharp.SKImageFilter? foreground);

Parameters

mode
SKBlendMode

The blend mode to use.

background
SKImageFilter

The background image filter, or null to use the source bitmap.

foreground
SKImageFilter

The foreground image filter, or null to use the source bitmap.

Returns

Returns the new SKImageFilter, or null on error.

Applies to

CreateBlendMode(SKBlender, SKImageFilter, SKImageFilter, SKRect)

Creates an image filter that blends two images using the specified blend mode.

public static SkiaSharp.SKImageFilter CreateBlendMode(SkiaSharp.SKBlender blender, SkiaSharp.SKImageFilter? background, SkiaSharp.SKImageFilter? foreground, SkiaSharp.SKRect cropRect);

Parameters

blender
SKBlender

The custom blender to use.

background
SKImageFilter

The background image filter, or null to use the source bitmap.

foreground
SKImageFilter

The foreground image filter, or null to use the source bitmap.

cropRect
SKRect

The rectangle to which the output processing will be limited.

Returns

Returns the new SKImageFilter, or null on error.

Applies to

CreateBlendMode(SKBlendMode, SKImageFilter, SKImageFilter, SKRect)

Creates an image filter that blends two images using the specified blend mode.

public static SkiaSharp.SKImageFilter CreateBlendMode(SkiaSharp.SKBlendMode mode, SkiaSharp.SKImageFilter? background, SkiaSharp.SKImageFilter? foreground, SkiaSharp.SKRect cropRect);

Parameters

mode
SKBlendMode

The blend mode to use.

background
SKImageFilter

The background image filter, or null to use the source bitmap.

foreground
SKImageFilter

The foreground image filter, or null to use the source bitmap.

cropRect
SKRect

The rectangle to which the output processing will be limited.

Returns

Returns the new SKImageFilter, or null on error.

Applies to