0.0.5 • Published 5 years ago

dominantcolors.js v0.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

dominantcolors.js

npm-image downloads-image downloads-image downloads-image downloads-image

Extract dominant colors from image. source code

install

install dominantcolors.js via yarn

yarn add dominantcolors.js

you can also use unpkg, just replace "version" with the current version on the link below:

<script type="text/javascript"
src="https://unpkg.com/dominantcolors.js@version/dist/dominantcolors.umd.js"

quick start

const dominantcolorsJs = require("dominantcolors.js");

dominantcolorsJs("./example.jpg", {
  count: 4,
  omitTransparentPixel: true,
  colorFormat: "hex" // hex or rgb
})
  .then(result => {
    // result is an array of colors
    // eg: ['#4B2A29', '#180C0C', '#582929', '#160808']
  })
  .catch(error => {
    // handle the error
  });