mirror of
https://github.com/janishutz/color-thief.git
synced 2025-11-25 13:54:25 +00:00
30 lines
865 B
Markdown
30 lines
865 B
Markdown
# Color Thief
|
|
A script for grabbing the dominant color or a representative color palette from an image. Uses javascript and canvas.
|
|
|
|
###[See a Demo](http://lokeshdhakar.com/projects/color-thief)
|
|
|
|
###Usage
|
|
|
|
####Get Dominant Color
|
|
```js
|
|
getDominantColor(sourceImage)
|
|
```
|
|
returns {r: num, g: num, b: num}
|
|
|
|
Uses the median cut algorithm provided by quantize.js to cluster similar
|
|
colors and return the base color from the largest cluster.
|
|
|
|
####Create Palette
|
|
```js
|
|
createPalette(sourceImage, colorCount)
|
|
|
|
```
|
|
returns array[ {r: num, g: num, b: num}, {r: num, g: num, b: num}, ...]
|
|
|
|
Use the median cut algorithm provided by quantize.js to cluster similar
|
|
colors.
|
|
|
|
BUGGY: Function does not always return the requested amount of colors. It can be +/- 2.
|
|
|
|
###License
|
|
Licensed under the [Creative Commons Attribution 2.5 License](http://creativecommons.org/licenses/by/2.5/) |