rest25/library/colorsys.rst => rest262/library/colorsys.rst
n1- 
2:mod:`colorsys` --- Conversions between color systems
3=====================================================
4
5.. module:: colorsys
6   :synopsis: Conversion functions between RGB and other color systems.
7.. sectionauthor:: David Ascher <da@python.net>
8
9
10The :mod:`colorsys` module defines bidirectional conversions of color values
11between colors expressed in the RGB (Red Green Blue) color space used in
12computer monitors and three other coordinate systems: YIQ, HLS (Hue Lightness
13Saturation) and HSV (Hue Saturation Value).  Coordinates in all of these color
14spaces are floating point values.  In the YIQ space, the Y coordinate is between
150 and 1, but the I and Q coordinates can be positive or negative.  In all other
16spaces, the coordinates are all between 0 and 1.
17
n17+.. seealso::
18+ 
18-More information about color spaces can be found at
19+   More information about color spaces can be found at
19-`<http://www.poynton.com/ColorFAQ.html>`_.
20+   http://www.poynton.com/ColorFAQ.html and
21+   http://www.cambridgeincolour.com/tutorials/color-spaces.htm.
20
21The :mod:`colorsys` module defines the following functions:
22
23
24.. function:: rgb_to_yiq(r, g, b)
25
26   Convert the color from RGB coordinates to YIQ coordinates.
27
52
53Example::
54
55   >>> import colorsys
56   >>> colorsys.rgb_to_hsv(.3, .4, .2)
57   (0.25, 0.5, 0.4)
58   >>> colorsys.hsv_to_rgb(0.25, 0.5, 0.4)
59   (0.3, 0.4, 0.2)
t60- 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op