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.
- Host: GitHub
- URL: https://github.com/vamosgs/image-analyzer
- Owner: VamOSGS
- License: mit
- Created: 2019-01-18T15:52:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-26T14:28:32.000Z (over 7 years ago)
- Last Synced: 2025-03-12T14:07:35.273Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.19 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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...