ColorExtensionsBlend(Color32, Color32) Method

Blends the specified foreColor and backColor in the sRGB color space. It returns foreColor if it has no transparency (that is, when A is 255); otherwise, the result of the blending.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 8.2.0
C#
public static Color32 Blend(
	this Color32 foreColor,
	Color32 backColor
)

Parameters

foreColor  Color32
The covering color to blend with backColor.
backColor  Color32
The background color to be covered with foreColor.

Return Value

Color32
foreColor if it has no transparency; otherwise, the result of the blending.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Color32. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also