如何在base64 PNG中获取像素

时间:2017-05-19 15:30:53

标签: node.js image selenium

如何从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
}

0 个答案:

没有答案