作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用这个函数
def closest_colour(requested_colour):
min_colours = {}
for key, name in webcolors.css3_hex_to_names.items():
r_c, g_c, b_c = webcolors.hex_to_rgb(key)
rd = (r_c - requested_colour[0]) ** 2
gd = (g_c - requested_colour[1]) ** 2
bd = (b_c - requested_colour[2]) ** 2
min_colours[(rd + gd + bd)] = name
return min_colours[min(min_colours.keys())]
我正在使用 Webcolor 1.11.1 Python 3.8.8,我在行中遇到了这个错误
for key, name in webcolors.css21_hex_to_names.items():
AttributeError:模块“webcolors”没有属性“css21_hex_to_names”
最佳答案
幸运的是,我找到了解决这个问题的方法。我使用了这个 webcolors.CSS3_HEX_TO_NAMES 而不是 webcolors.css21_hex_to_names。CSS3_HEX_TO_NAMES 大写
关于python-3.x - 'webcolors' 没有属性 'css3_hex_to_names',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70967119/
我正在使用这个函数 def closest_colour(requested_colour): min_colours = {} for key, name in webcolors.
我是一名优秀的程序员,十分优秀!