Holen Sie sich die im Bild verwendete Farbe
Ich habe dieses Bild verwendet.
colorthief.py
# -*- coding: utf-8 -*-
from colorthief import ColorThief
color_thief = ColorThief('imoyokan.jpg')
#Die am häufigsten verwendete Farbe
dominant_color = color_thief.get_color(quality=1)
print dominant_color
# (43, 37, 27)
#Teilen Sie die verwendeten Farben in 6 Typen
palette = color_thief.get_palette(color_count=6)
print palette
# [(212, 173, 94), (42, 36, 27), (104, 64, 46), (123, 100, 46), (231, 199, 154), (73, 84, 78)]
Recommended Posts