ArcObjects Library Reference (Display)  

ICieLabConversion.LabToRgb Method

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

Parameters

RGB [out]   RGB is a parameter of type long 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

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also

ICieLabConversion Interface