本插件可以获取图片的rgb值
获取颜色
getColor({params}, callback(ret))
path:
rect:
{
x:1, //(可选项)数字类型; x 坐标;默认:1
y:1, //(可选项)数字类型; y 坐标;默认:1
}
ret:
{
color:'' //字符串类型;颜色rgb;示例:rgb(220,220,220)
}
var colorGain = api.require('colorGain');
colorGain.getColor({
path:'widget://res/king.png',
rect: {
x: 1,
y: 1
}
}, function(ret) {
api.alert({msg: JSON.stringify(ret)});
});
iOS系统,Android系统
可提供的1.0.0及更高版本