Python implements color rgb and hex conversion functions, pythonhex
This article describes how python converts colors rgb and hex. Share it with you for your reference. The specific analysis is as follows:
The following python code provides two functions to convert the color represented by rgb to the hex Value, hex to rgb, and rgb to a three-digit ancestor, for example (128,255, 28 ), hex is Numeric 876645
Def hex2rgb (hexcolor): rgb = [(hexcolor> 16) & 0xff, (hexcolor> 8) & 0xff, hexcolor & 0xff] return rgbdef rgb2hex (rgbcolor): r, g, B = rgbcolor return (r <16) + (g <8) + B
Call method:
Print ("www.jb51.net rgb2hex (128,128, 18) = % s" % rgb2hex (128,128, 18) print ("www.jb51.net rgb2hex (8421394) = % s "% hex2rgb (8421394 ))
The output result is as follows:
Www.jb51.net rgb2hex (128,128, 18) = 8421394www.jb51.net rgb2hex (8421394) = [128,128, 18]
I hope this article will help you with Python programming.