1.0.2 • Published 8 years ago
img-color v1.0.2
img-color
Get dominant color of image directly from url
Install
$ npm install img-colorUsage
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' }