ColorThief之获取图片主色
ColorThief之获取图片主色
插件:ColorThief
$ npm i --save colorthief
引用:
<script type="text/javascript" src="../../dist/colorthief/dist/color-thief.min.js"></script>
html:
<img src="img3.png" id="img3"/>
js:
// 获取图片主色 function getColors() { let img = $('#img3')[0] let colorThief = new ColorThief(); let rgbs = colorThief.getPalette(img, 4) return rgbs }
参考自:@崔
钻研不易转载请注明出处。。。。。。