🎉 Image-Color-Extractor allows you to extract color from images and use it in your app with ease. No more nonsense!
$ npm install image-color-extractor
import React from 'react';
import { useEffect } from 'react';
import extractSingleColor from 'image-color-extractor';
function App(){
const imageURI = "YOUR_IMAGE_URI";
useEffect(() => {
extractSingleColor(imageURI)
.then(color => console.log(color))
.catch(error => console.error(error))
}, []);
return (
<div>
</div>
);
}
Show your ❤️ and support by giving a ⭐. Any suggestions are welcome! Take a look at the contributing guide.
You can find the release note for the latest release here
You can browse them all here
Licensed under MIT