gpt4 book ai didi

python-3.x - 'webcolors' 没有属性 'css3_hex_to_names'

转载 作者:行者123 更新时间:2023-12-05 01:25:14 28 4
gpt4 key购买 nike

我正在使用这个函数

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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com