Python标准库 colorsys --- 颜色系统间的转换

参考链接: 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]
>>> 
>>> 
>>> 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值