Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.42 KB

README.md

File metadata and controls

56 lines (41 loc) · 1.42 KB

🎨

colority

travis dependencies devDependencies

extracting colors from pictures.

Installation

$ yarn add colority

Usage

DEMO

import colority from 'colority';

colority(imageURL, colors => {
    // do something here...
});

// or skip pixels

colority(imageURL, {
    skip: 1000,
}, colors => {
    // do something here...
});

APIs

  • colority(imageURL[, options], colors => {})
    • imageURL: picture url.
    • options.skip: skip pixels(Optional, default to 10).
    • colors: the extracted rgb colors(Sort by quantity).

License

Licensed under the MIT License