ColorExtensionsBlend(PColorF, PColorF, 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 greater than or equal to 1); otherwise, the result of the blending.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.0.0
C#
public static PColorF Blend(
	this PColorF foreColor,
	PColorF backColor,
	WorkingColorSpace colorSpace
)

Parameters

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

Return Value

PColorF
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 PColorF. 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