Converts a CIELAB color to an RGB color.
[Visual Basic 6.0] Sub LabToRgb(
RGB As OLE_COLOR, _
ByVal l As Double, _
ByVal a As Double, _
ByVal b As Double _
)
[Visual Basic .NET] Public Sub LabToRgb ( _ ByRef RGB As Integer, _ ByVal l As Double, _ ByVal a As Double, _ ByVal b As Double _ )
[C#] public void LabToRgb ( ref int RGB, ref double l, ref double a, ref double b );
[Java] public void labToRgb ( int RGB, double l, double a, double b ) throws IOException, AutomationException
[C++]
HRESULT LabToRgb(
OLE_COLOR* RGB,
double l,
double a,
double b
);
Parameters
RGB [out]
RGB is a parameter of type OLE_COLOR
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