ColorExtensionsToSKColorF(PColor64, WorkingColorSpace) Method

Converts a PColor64 struct to SKColorF.

Definition

Namespace: KGySoft.Drawing.SkiaSharp
Assembly: KGySoft.Drawing.SkiaSharp (in KGySoft.Drawing.SkiaSharp.dll) Version: 10.0.0
C#
public static SKColorF ToSKColorF(
	this PColor64 color,
	WorkingColorSpace targetColorSpace
)

Parameters

color  PColor64
The source color.
targetColorSpace  WorkingColorSpace
The color space of the result. If Default or any undefined value, then it's the same as the color space of the PColor64 type, which is sRGB. This parameter is optional.
Default value: Default.

Return Value

SKColorF
The result of the conversion.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PColor64. 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