npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

color-extraction

v1.0.8

Published

Gets the dominant color or color palette in the image and the color name in English and Chinese.

Downloads

65

Readme

color-extraction

npm GitHub issues npm npm package minimized gzipped size (select exports) NPM

English · 简体中文

Gets the dominant color or color palette in the image and the color name in English and Chinese.✨

Works with browsers and node environments.

Getting started

Using in Node

1.Install and import

$ npm i color-extraction
const colorExtraction = require('color-extraction');

2.Use

  • Get colorName

    Convert colors to Chinese and English keywords. (Support Hex、RGB)

    colorExtraction.colorName('#fff'); // { color: '#fff', colorName: [ '白', '白色', 'white' ] }
    
    colorExtraction.colorName('rgb(0, 255, 0)'); // { color: 'rgb(0, 255, 0)', colorName: [ '绿', '绿色', 'green' ] }
  • Get mainColor and paletteColor

    Both the mainColor() and paletteColor() methods return a Promise when used in Node.

    const img = resolve(process.cwd(), 'lostElk.png');
    
    colorExtraction
      .mainColor('img', 10)
      .then((color) => {
        console.log(color);
      })
      .catch((err) => {
        console.log(err);
      });
    
    colorExtraction
      .paletteColor('img', { colorCount: 5, quality: 10 })
      .then((color) => {
        console.log(color);
      })
      .catch((err) => {
        console.log(err);
      });

Using in the browser

1.Install

  • Install as dependency with npm.

    $ npm i color-extraction
  • Load from a CDN.

    <script src="https://unpkg.com/color-extraction"></script>

2. Import

  • As a global variable.

    The global variable is named colorExtraction instead of color-extraction

    <script src="https://unpkg.com/color-extraction"></script>
  • As an ES6 module.

    import colorExtraction from 'color-extraction';

3. Use

  • Get colorName

    Convert colors to Chinese and English keywords. (Support Hex、RGB)

    colorExtraction.colorName('#fff'); // { color: '#fff', colorName: [ '白', '白色', 'white' ] }
    
    colorExtraction.colorName('rgb(0, 255, 0)'); // { color: 'rgb(0, 255, 0)', colorName: [ '绿', '绿色', 'green' ] }
  • Get mainColor and paletteColor

    Both the mainColor() and paletteColor() methods return a Promise when used in browser.

    // Get image
    const img = document.getElementById('img');
    
    // Make sure image is finished loading
    if (img.complete) {
      colorExtraction.mainColor(img, 10).then((colorName) => {
        console.log(colorName);
      });
    } else {
      img.addEventListener('load', function () {
        colorExtraction.mainColor(img, 10).then((colorName) => {
          console.log(colorName);
        });
      });
    }

API

mainColor(image, quality)

Returns: Promise<{ mainColorHex: String, colorName: [ String, String, String ] }>

Gets the main color from the image. Returns an object that contains two properties: 1. mainColorHex is a string with a HEX color number representing the extracted color value; 2. colorName is an array that stores the corresponding name of the color.

image - When called in the browser, this argument expects an HTML image element, not a URL. When run in Node, this argument expects a path to the image.

quality - Quality is an optional argument that must be an Integer of value 1 or greater, and defaults to 10. The number determines how many pixels are skipped before the next one is sampled. We rarely need to sample every single pixel in the image to get good results. The bigger the number, the faster a value will be returned.


paletteColor(image, { colorCount, quality })

Returns: Promise<[{ paletteColorHex: String, colorName: [ String, String, String ] },...]>

Get the color palette from the image. Returns an array. The array contains several objects, each of which has two properties :paletteColorHex is a string with a hexadecimal color number representing the extracted color value; 2. colorName is an array that stores the corresponding names of colors.

image - When called in the browser, this argument expects an HTML image element, not a URL. When run in Node, this argument expects a path to the image.

colorCount - ColorCount is an optional parameter and must be an integer of 1 or greater, with a default value of 5. This number determines how many palette colors to get.

quality - Quality is an optional argument that must be an Integer of value 1 or greater, and defaults to 10. The number determines how many pixels are skipped before the next one is sampled. We rarely need to sample every single pixel in the image to get good results. The bigger the number, the faster a value will be returned.


colorName(color)

Returns: { color: String, colorName: [ String, String, String ] }

Gets the name of the color from the HEX or RGB color value. Returns an object with two properties :color is the passed color value; 2. colorName is an array that stores color names.

color - Support Hex, RGB.

FAQ

Do I have to wait for the image to load?

Yes. If you see an error that reads: Cannot read property '0' of null, it is likely that the image had not finished loading when you passed it to mainColor() or paletteColor().

// RISKY 🙀
const img = document.getElementById('img');

colorExtraction.paletteColor(img, { colorCount: 3, quality: 10 });
// RISKY 😼
const img = document.getElementById('img');

if (img.complete) {
  colorExtraction.paletteColor(img, { colorCount: 3, quality: 10 });
} else {
  img.addEventListener('load', function () {
    colorExtraction.paletteColor(img, { colorCount: 3, quality: 10 });
  });
}

How do I test the script locally?

If you are testing the script locally in a web browser, you might see the following error:

Access to script at 'file://...' from origin 'null' has been blocked by CORS policy.

This is because the browser restricts direct access to the filesystem.

To get around this, you can set up a minimal server to host the files. One option is http-server. To run this on demand without installing it as a project dependency, you can use the npx command:

$ npx http-server

Now you can visit http://localhost:8080 to view your server.

Does it work if the image is hosted on another domain?

If you manage the server hosting the image...

Yes. If you are seeing an error that reads:

The canvas has been tainted by cross-origin data.

then you are running into a cross-origin resouce sharing (CORS) issue. Check the following two items:

  1. CORS policy on the server. Is the server hosting the image properly configured? Make sure the requesting domain is whitelisted in the access-control-allow-origin header, or the server hosting the image has an open policy:

    access-control-allow-origin: *
  2. crossorigin attr. The HTML image element must be given a crossorigin attribute.

    <img
      src="https://api.lostelk.cn/files/746/serve?size=large"
      crossorigin="anonymous"
    />

    If you're dynamically adding the image element, you can do the following:

    const img = new Image();
    
    img.addEventListener('load', function() {
      colorExtraction.mainColor((img);
    });
    
    img.crossOrigin = 'Anonymous';
    img.src = 'https://api.lostelk.cn/files/746/serve?size=large'