1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Simple image color extractor written in Go with no external dependencies.
[](https://pkg.go.dev/github.com/marekm4/color-extractor)
[](https://goreportcard.com/report/github.com/marekm4/color-extractor)
[](https://raw.githack.com/wiki/marekm4/color-extractor/coverage.html)
Demo:
https://color-extractor-demo.marekm4.com/
Blog post:
https://medium.com/@marek.michalik/c-vs-rust-vs-go-performance-analysis-945ab749056c
Usage:
```go
package main
import (
"fmt"
"image"
_ "image/jpeg"
"os"
"github.com/marekm4/color-extractor"
)
func main() {
file := "Fotolia_45549559_320_480.jpg"
imageFile, _ := os.Open(file)
defer imageFile.Close()
image, _, _ := image.Decode(imageFile)
colors := color_extractor.ExtractColors(image)
fmt.Println(colors)
}
```
Example image:

Extracted colors:

|