1RGBHLS(3NCARG) NCAR GRAPHICS RGBHLS(3NCARG)
2
3
4
6 RGBHLS - Converts a color specification given in the Red, Green, Blue
7 (RGB) color space to color values in the Hue, Lightness, Saturation
8 (HLS) color space.
9
11 CALL RGBHLS (R, G, B, H, L, S)
12
14 #include <ncarg/ncargC.h>
15
16 void c_rgbhls (float r, float g, float b, float *h,
17 float *l, float *s)
18
20 R (REAL, input, range [0.,1.]) represents the red intensity
21 component of the input point in RGB color space.
22
23 G (REAL, input, range [0.,1.]) represents the green
24 intensity component of the input point in RGB color space.
25
26 B (REAL, input, range [0.,1.]) represents the blue intensity
27 component of the input point in RGB color space.
28
29 H (REAL, output, range [0.,360.) ) represents the hue of the
30 input point in HLS color space. A value of (0.,0.,B) in the
31 input space will result in a hue of 0. in the output space.
32
33 L (REAL, output, range [0.,100.]) represents the lightness
34 value of the input point in HLS color space. Lightness is
35 a measure of the quantity of light - a lightness of 0. is
36 black, and a lightness of 100. gives white. The pure hues
37 occur at lightness value 50.
38
39 S (REAL, output, range [0.,100.]) represents the saturation
40 value of the input point in HLS color space. Saturation is
41 a measure of how much white light is mixed with the color.
42 Saturation values of 0. represent grays (with a gray value
43 equal to the lightness value L). Saturation values of 100.
44 are fully saturated colors. The hue is undefined when S=0.
45 The fully saturated pure hues occur when S=100. and L=50.
46 The saturation value should be thought of as a percentage.
47
49 Use the ncargex command to see the following relevant examples: tcolcv,
50 fcce02.
51
53 The C-binding argument descriptions are the same as the FORTRAN
54 argument descriptions.
55
57 To use RGBHLS or c_rgbhls, load the NCAR Graphics libraries ncarg,
58 ncarg_gks, and ncarg_c, preferably in that order.
59
61 See the colconv man page for a description of all Colconv error
62 messages and/or informational messages.
63
65 Online: colconv, hlsrgb, hsvrgb, rgbhsv, rgbyiq, yiqrgb, ncarg_cbind.
66
67 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
68
70 Copyright (C) 1987-2009
71 University Corporation for Atmospheric Research
72 The use of this Software is governed by a License Agreement.
73
74
75
76UNIX March 1993 RGBHLS(3NCARG)