willsonlincake 发表于 2022-4-4 11:16:44

Python获取图片的颜色和主要颜色

https://github.com/fengsp/color-thief-py
from colorthief import ColorThief

color_thief = ColorThief('/path/to/imagefile')
# get the dominant color
dominant_color = color_thief.get_color(quality=1)
# build a color palette
palette = color_thief.get_palette(color_count=6)

蓝莓糖 发表于 2022-4-4 13:38:53

功能广泛
页: [1]
查看完整版本: Python获取图片的颜色和主要颜色