albumcolors

A JavaScript script to create a 3-color palette based on an image. Inspired by iTunes 11.

  • 所有者: chengyin/albumcolors
  • 平台:
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

AlbumColors.js

Screenshot

A JavaScript script to pick 3 colors from an image to create a palette for background and text colors. Inspired by iTunes 11.

Examples

Hosted example showing album info generated from users' last.fm. Try it with your own username for different results.

How to Use

var url = 'http://www.google.com/images/srpr/logo3w.png',
	// You will need a image hosted under the same domain as the script
	albumColors = new AlbumColors(url);

albumColors.getColors(function(colors) {
	console.log(colors);
	// Result: [[254, 254, 254], [2, 138, 14], [4, 171, 21]]
});

Algorithm

The algorithm is simple.

  1. Load image from URL into canvas and get the color array by pixels (AlbumImage)

  2. Find n (default 10) major colors from the pixel array (AlbumColors)

    2.1. Divide color spectrum into 64 buckets

    2.2. Add each color into one of the bucket with a simple approximation

    2.3. Take the 10 buckets with the largest number of colors in them

    2.4. Averaging the colors in the dominating buckets to get the presenting color for the buckets

  3. Among the 10 major colors, pick out 3 (colorChooser)

    3.1. Color distance is simply defined as the Euclidean distance

    3.2. The most dominating color (ColorA) will be the background

    3.3. The color that is most distanced from ColorA, ColorB, will be text color 1

    3.4. The color that is second distanced form ColorA, ColorC, will be text color 2

Limitations

Images are loaded through canvas, therefore we are limited to the same origin rule. In the last.fm example, a simple image proxy is included to bypass the issue.

License

University of Illinois / NCSA

主要指标

概览
名称与所有者chengyin/albumcolors
主编程语言JavaScript
编程语言JavaScript (语言数: 2)
平台
许可证
所有者活动
创建于2012-12-13 05:27:27
推送于2013-02-19 14:01:00
最后一次提交2013-02-19 06:00:59
发布数0
用户参与
星数253
关注者数18
派生数29
提交数16
已启用问题?
问题数4
打开的问题数3
拉请求数1
打开的拉请求数2
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?