image-analyzer
v0.1.0-beta.4
Published
🖼️Simple Javascript library for analyzing images.
Downloads
40
Maintainers
Readme
Image-analyzer
Install it with node:
npm install image-analyzer --save
or
yarn add image-analyzer --save
or with link
<script src="./https://unpkg.com/[email protected]/lib/index.js"></script>
Usage
ATTENTION IN THIS VERSION OF PACKAGE IMAGE NEED TO BE LOCAL
import in your js or link in html then use like this
const analyzer = new Analyzer(url);
analyzer
.analyze()
.then(colors => {
// HERE YOU GOT ARRAY OF COLORS(hex)
console.log(colors);
})
.catch(console.error);