dominantcolors.js

0.0.5 • Public • Published

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
  });

Package Sidebar

Install

npm i dominantcolors.js

Weekly Downloads

16

Version

0.0.5

License

MIT

Unpacked Size

34.8 kB

Total Files

11

Last publish

Collaborators

  • noski