如何从base64 png图像数据获取坐标处的像素颜色?
driver.takeScreenshot().then(
function(image, err) {
require('fs').writeFile('out.png', image, 'base64', function(err) {
console.log(err)
});
getPixelColorAt(40, 500, image)
}
);
function getPixelColorAt(x,y,data) {
//should return an Hexadecimal value
}