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 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 );
[C++]
HRESULT LabToRgb(
OLE_COLOR* RGB,
double l,
double a,
double b
);
[C++]
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