SKColorFilter.CreateBlendMode(SKColor, SKBlendMode) Method

Definition

Creates a new color filter that uses the specified color and mode.

public static SkiaSharp.SKColorFilter CreateBlendMode (SkiaSharp.SKColor c, SkiaSharp.SKBlendMode mode);

Parameters

c
SKColor

The source color used with the specified mode.

mode
SKBlendMode

The blend mode mode that is applied to each color.

Returns

Returns the new SKColorFilter, or null if the mode will have no effect.

Remarks

If the mode is Dst, this function will return null (since that mode will have no effect on the result).

Applies to