ArcObjects Library Reference  (Display)    

ICieLabConversion.HsvToLab Method

Converts an RGB color to a CIELAB color.

[Visual Basic 6.0]
Sub HsvToLab(
    ByVal h As Integer, _
    ByVal s As Byte, _
    ByVal v As Byte, _
    l As Double, _
    a As Double, _
    b As Double _
)
[Visual Basic .NET]
Public Sub HsvToLab ( _
    ByVal h As Short, _
    ByVal s As Byte, _
    ByVal v As Byte, _
    ByRef l As Double, _
    ByRef a As Double, _
    ByRef b As Double _
)
[C#]
public void HsvToLab (
    short h,
    byte s,
    byte v,
    ref double l,
    ref double a,
    ref double b
);
[Java]
public void hsvToLab (
    short h,
    byte s,
    byte v,
    double l,
    double a,
    double b
)
throws
    IOException,
    AutomationException
[C++]
HRESULT HsvToLab(
  short h,
  Byte s,
  Byte v,
  double* l,
  double* a,
  double* b
);
[C++]

Parameters

h [in]

  h is a parameter of type short

s [in]

  s is a parameter of type Byte

v [in]

  v is a parameter of type Byte

l [out]

  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

 


Feedback Send feedback on this page