ColorExtensionsBlend(Color32, Color32, WorkingColorSpace) Method

Blends the specified foreColor and backColor in the specified colorSpace. 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,
	WorkingColorSpace colorSpace
)

Parameters

foreColor  Color32
The covering color to blend with backColor.
backColor  Color32
The background color to be covered with foreColor.
colorSpace  WorkingColorSpace
The color space to be used for the blending. If Default, then the sRGB color space will be used. For performance reasons this method does not validate this parameter. For undefined values the sRGB color space will be used as well.

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