An open API service indexing awesome lists of open source software.

https://github.com/vamosgs/image-analyzer

🖼️Simple Javascript library for analyzing images.
https://github.com/vamosgs/image-analyzer

Last synced: about 1 year ago
JSON representation

🖼️Simple Javascript library for analyzing images.

Awesome Lists containing this project

README

          

## Image-analyzer

#### Install it with node:

```bash
npm install image-analyzer --save
```

or

```bash
yarn add image-analyzer --save
```

#### or with link

```html

```

#### Usage

### ATTENTION IN THIS VERSION OF PACKAGE IMAGE NEED TO BE LOCAL

#### import in your js or link in html then use like this

```js
const analyzer = new Analyzer(url);

analyzer
.analyze()
.then(colors => {
// HERE YOU GOT ARRAY OF COLORS(hex)
console.log(colors);
})
.catch(console.error);
```

## WORKING ON PROGRESS...