get-image-colors
Extract colors from images. Supports GIF, JPG, PNG, and even SVG!
Installation
npm install get-image-colors --save
This package is intended for use in node environments. It won't work in a browser because it has node-specific dependencies.
Note: when installing with webpack, if you get the error
Can't resolve 'fs' in '/node_modules/get-svg-colors'
as per an open issue in webpack-contrib, you will need to add node: { fs: 'empty' }
to your webpack.base.config
:
module.exports = {
... ,
node: { fs: 'empty' }
}
Usage
const path = require('path')
const getColors = require('get-image-colors')
getColors(path.join(__dirname, 'double-rainbow.png')).then(colors => {
})
You can also use a buffer as an input source.
const fs = require('fs')
const buffer = fs.readFileSync(path.join(__dirname, 'double-rainbow.gif'))
const getColors = require('get-image-colors')
getColors(buffer, 'image/gif').then(colors => {
})
colors
is an array of chroma.js color objects. chroma.js objects have methods that lets you pick the color format you want (RGB hex, HSL, etc), and give you access to powerful color manipulation features:
colors.map(color => color.hex())
colors[0].alpha(0.5).css()
If you don't like promises, you can use node-style callbacks too:
getColors(filename, function (err, colors) {
if (err) throw err
})
The default number of colors returned is 5. You can specify a different number of colors by passing an options object into the call to getColors:
const path = require('path')
const getColors = require('get-image-colors')
const options = {
count: 10,
type: 'image/png'
}
getColors(path.join(__dirname, 'double-rainbow.png'), options).then(colors => {
})
How it Works
get-image-colors
uses get-pixels to create a pixel array, then extracts a color palette with get-rgba-palette, which uses quantize under the hood.
Colors are converted from get-rgba-palette's flat array format into chroma.js color instances.
Tests
npm install
npm test
Dependencies
Dev Dependencies
- mocha: simple, flexible, fun test framework
License
MIT