img-color
v1.0.2
Published
Get dominant color of image from url
Downloads
3
Maintainers
Readme
img-color
Get dominant color of image directly from url
Install
$ npm install img-color
Usage
const color = require('img-color');
color.getDominantColor(url)
.then(json => console.log(json))
.catch(err => console.error(err));
Output
returns json object wher key is dColor
and value hex formated color
{ dColor: 'ffc20c' }