octopal
beautiful POC
一個用於從圖像中獲取調色板的腳本。使用JavaScript和Canvas標籤使其實現。
在線嘗試:palette.junglestar.org
章魚是一項基於:
查看演示|在Lokeshdhakar博客上閱讀更多信息
var colorThief = new ColorThief ( ) ;
colorThief . getColor ( sourceImage ) ; getColor ( sourceImage [ , quality ] )
returns { r : num , g : num , b : num }在此示例中,我們構建了8個調色板。
var colorThief = new ColorThief ( ) ;
colorThief . getPalette ( sourceImage , 8 ) ; getPalette ( sourceImage [ , colorCount , quality ] )
returns [ [ num , num , num ] , [ num , num , num ] , ... ]npm install