参考链接: colorsys — 颜色系统间的转换
参考链接: RGB HSV 在线转换工具
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> import colorsys
>>> colorsys.rgb_to_hsv(0.2, 0.4, 0.4)
(0.5, 0.5, 0.4)
>>>
>>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)
(0.2, 0.4, 0.4)
>>>
>>>
>>> colorsys.hsv_to_rgb(0.3074, 0.4589, 0.8118)
(0.4972314291119999, 0.8118, 0.43926498)
>>>
>>> type(colorsys.hsv_to_rgb(0.3074, 0.4589, 0.8118))
<class 'tuple'>
>>>
>>>
>>> list(map(lambda x:int(255*x),colorsys.hsv_to_rgb(0.3074, 0.4589, 0.8118)))
[126, 207, 112]
>>>
>>>
>>>
>>> rgb = (126, 207, 112)
>>> hsv = (0.3074, 0.4589, 0.8118)
>>>
>>> rgb
(126, 207, 112)
>>> hsv
(0.3074, 0.4589, 0.8118)
>>>
>>>
>>> list(map(lambda x:x/255.0,rgb))
[0.49411764705882355, 0.8117647058823529, 0.4392156862745098]
>>>
>>> colorsys.rgb_to_hsv(*list(map(lambda x:x/255.0,rgb)))
(0.3087719298245614, 0.45893719806763283, 0.8117647058823529)
>>>
>>>
>>> result = colorsys.hsv_to_rgb(*hsv)
>>> result
(0.4972314291119999, 0.8118, 0.43926498)
>>>
>>> hsv
(0.3074, 0.4589, 0.8118)
>>>
>>> list(map(lambda x:int(255*x),result))
[126, 207, 112]
>>>
>>>
>>>