1.2.0 ā€¢ Published 1 year ago

image-color-extractor v1.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Image-Color-Extractor

šŸŽ‰ Image-Color-Extractor allows you to extract color from images and use it in your app with ease. No more nonsense!

Installation

$ npm install image-color-extractor

The gist

  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>
    );
  }

Contribute

Show your ā¤ļø and support by giving a ā­. Any suggestions are welcome! Take a look at the contributing guide.

Release Notes

You can find the release note for the latest release here

You can browse them all here

License

Licensed under MIT

1.2.0

1 year ago

1.1.3

1 year ago

1.1.0

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

3 years ago