Have to admit I was really taken by thatTurtle color mixer demo.
Much fun, but not really helptful in an actual work situation. We need
to read the color value, and make it reproductible.
That demo was done in 2006. Python has advanced since then with tkinter, although
it still only accepts color names or hex values as one codes. Not really
a problem; one can go from hex to rgb easily enough. Hex colors are base 16,
rather than base 10. Below, a patch of Saxon blue HEX #657F84 from
Pantone. How to get the red-green-blue value:
(6 x 16) + 5 = 101
The second two, green (the letters go from A for 10):
(7 x 16) + 15 = 127
The third two, blue:
(8 x 16) + 4 = 132
Works like that everywhere. The computer will 'do something' for a
definite number of color calls, but that's it.
Here, on Microsoft Expression Design:
No comments:
Post a Comment