Converts CIELab floating point values to integer RGB results
System.int[] CIELabToRGB(
System.float[]
)
function CIELabToRGB(
: System.Singlearray of
): System.array of Integer;
function CIELabToRGB(
: System.float[]
) : System.int[];
System.int[]* CIELabToRGB(
System.float[]*
)
System.array<int>^ CIELabToRGB(
System.array<float>^
)
'Declaration
Function CIELabToRGB( _
ByVal () As System.Single _
) As System.Integer()
'Usage
Dim instance As IColourConverter
Dim CIELab() As System.Single
Dim value() As System.Integer
value = instance.CIELabToRGB(CIELab)
Parameters
- CIELab
-
CIELab values in range 0-100.0 for L (first value) and
-128.0 to +127.0 for a and b (second and theird values)
Return Value
An array of 3 values. Although made as Int32 values for
CLS complicance, the range should be confined to the ushort range (0 - 0xFFFF)
Target Platforms: .NET CLR 4.8 or higher