Versions in this module Expand all Collapse all v1 v1.1.0 Feb 28, 2026 Changes in this version + func ExtractDominantPalette(img image.Image, k int) []colorful.Color + func ExtractKMeansPalette(img image.Image, k int) []colorful.Color + func ExtractPalette(img image.Image, k int, method PaletteMethod) []colorful.Color + func ReadImage(path string) image.Image + func SaveGrayImages(images []*image.Gray, dir string) error + func SaveImage(img image.Image, filename string) error + func SavePalette(palette []colorful.Color, tileSize int, filename string) error + func SaveRgbaImages(images []*image.NRGBA, dir string) error + func SelectDiverseWeightedColors(cands []weightedColor, k int) []colorful.Color + func SortPaletteByBrightness(palette []colorful.Color) + type PaletteMethod int + const PaletteMethodDominantColor + const PaletteMethodKMeans + func (m PaletteMethod) String() string