![]() |
This document is archived and information here might be outdated. Recommended version. |
Converts a CIELAB color to an RGB color.
[Visual Basic .NET] Public Sub LabToHsv ( _ ByRef h As Int16&, _ ByRef s As Byte&, _ ByRef v As Byte&, _ ByVal l As Double, _ ByVal a As Double, _ ByVal b As Double _ )
[C#] public void LabToHsv ( ref Int16& h, ref Byte& s, ref Byte& v, ref double l, ref double a, ref double b );
[C++]
HRESULT LabToHsv(
System.Int16* h,
System.Byte* s,
System.Byte* v,
double l,
double a,
double b
);
[C++]
Parameters h [out]
h is a parameter of type short* s [out]
s is a parameter of type unsigned char* v [out]
v is a parameter of type unsigned char* l [in]
l is a parameter of type double a
a is a parameter of type double b
b is a parameter of type double