ZtoRGBpy.sRGB_HIGH¶
-
sRGB_HIGH
= ZtoRGBpy.RGBColorProfile((2126.0, 7152.0, 722.0), 0.5)[source]¶ High Contrast sRGB Color Profile.
Defines a high contrast color profile using gamma = \(\frac{1}{2}\), and color weights of (2126.0, 7152.0, 772.0), matching the sRGB color space defined by IEC [1]
Example
Display the color wheel using matplotlib:
>>> import matplotlib.pyplot as plt >>> import ZtoRGBpy >>> ZtoRGBpy.colorwheel(profile=ZtoRGBpy.sRGB_HIGH,grid=True) >>> plt.show()
[1] | International Electrotechnical Commission. Colour Measurement and Management in Multimedia Systems and Equipment. 1998. URL: http://www2.units.it/ipl/students_area/imm2/files/Colore1/sRGB.pdf. |