|
|
Title | Convert RGB values into HLS values and vice versa |
Keywords | RGB, HLS, color, convert |
Categories | Graphics |
|
|
Visual Basic uses RGB (red, green, and blue) component values to specify colors. In Visual Basic, the component values must be between 0 and 255. In this example, the values should be between 0.0 and 1.0.
The HLS system uses the values hue, lightness, and saturation. Hue determines the color with a 0 to 360 degree direction on a color wheel.
Lightness indicates how much light is in the color. When lightness = 0, the color is black. When lightness = 1, the color is white. When lightness = 0.5, the color is as "pure" as possible.
Saturation indicates the amount of color added. You can think of this as the opposite of "grayness." When saturation = 0, the color is pure gray. In this case, if lightness = 0.5 you get a neutral color. When saturation is 1, the color is "pure."
Here are some examples:
Color | RGB | HLS | Sample |
Red | 1.0 | 0.0 | 0.0 | 0 | 0.5 | 1.0 | |
Yellow | 1.0 | 1.0 | 0.0 | 60 | 0.5 | 1.0 | |
Green | 0.0 | 1.0 | 0.0 | 120 | 0.5 | 1.0 | |
Cyan | 0.0 | 1.0 | 1.0 | 180 | 0.5 | 1.0 | |
Blue | 0.0 | 0.0 | 1.0 | 240 | 0.5 | 1.0 | |
Magenta | 1.0 | 0.0 | 1.0 | 300 | 0.5 | 1.0 | |
White | 1.0 | 1.0 | 1.0 | (any) | 1.0 | (any) | |
Black | 0.0 | 0.0 | 0.0 | (any) | 0.0 | (any) | |
Maroon | 0.5 | 0.0 | 0.0 | 0 | 0.25 | 1.0 | |
Pink | 1.0 | 0.5 | 0.5 | 0 | 0.75 | 1.0 | |
Use the example program to experiment with other values. Remember to keep RGB values between 0.0 and 1.0.
This example uses code translated from the first edition of the book
Three-Dimensional Computer Graphics by Alan Watt.
The following code converts an RGB value into an HLS value.
|
|
' Convert an RGB value into an HLS value.
Private Sub RgbToHls(ByVal R As Double, ByVal G As Double, _
ByVal B As Double, ByRef H As Double, ByRef L As _
Double, ByRef S As Double)
Dim max As Double
Dim min As Double
Dim diff As Double
Dim r_dist As Double
Dim g_dist As Double
Dim b_dist As Double
' Get the maximum and minimum RGB components.
max = R
If max < G Then max = G
If max < B Then max = B
min = R
If min > G Then min = G
If min > B Then min = B
diff = max - min
L = (max + min) / 2
If Abs(diff) < 0.00001 Then
S = 0
H = 0 ' H is really undefined.
Else
If L <= 0.5 Then
S = diff / (max + min)
Else
S = diff / (2 - max - min)
End If
r_dist = (max - R) / diff
g_dist = (max - G) / diff
b_dist = (max - B) / diff
If R = max Then
H = b_dist - g_dist
ElseIf G = max Then
H = 2 + r_dist - b_dist
Else
H = 4 + g_dist - r_dist
End If
H = H * 60
If H < 0 Then H = H + 360
End If
End Sub
|
|
The following code converts an HLS value into an RGB value.
|
|
' Convert an HLS value into an RGB value.
Private Sub HlsToRgb(ByVal H As Double, ByVal L As Double, _
ByVal S As Double, ByRef R As Double, ByRef G As _
Double, ByRef B As Double)
Dim p1 As Double
Dim p2 As Double
If L <= 0.5 Then
p2 = L * (1 + S)
Else
p2 = L + S - L * S
End If
p1 = 2 * L - p2
If S = 0 Then
R = L
G = L
B = L
Else
R = QqhToRgb(p1, p2, H + 120)
G = QqhToRgb(p1, p2, H)
B = QqhToRgb(p1, p2, H - 120)
End If
End Sub
Private Function QqhToRgb(ByVal q1 As Double, ByVal q2 As _
Double, ByVal hue As Double) As Double
If hue > 360 Then
hue = hue - 360
ElseIf hue < 0 Then
hue = hue + 360
End If
If hue < 60 Then
QqhToRgb = q1 + (q2 - q1) * hue / 60
ElseIf hue < 180 Then
QqhToRgb = q2
ElseIf hue < 240 Then
QqhToRgb = q1 + (q2 - q1) * (240 - hue) / 60
Else
QqhToRgb = q1
End If
End Function
|
|
For more information on graphics programming in Visual Basic, see my book Visual Basic Graphics Programming.
|
|
|
|
|
|