是否可以使用node.js从本地图像文件中获取RGB值数组?我正在尝试编写一个脚本,它以文件路径作为参数,并返回一个表示像素数据的数组。
function getPixelArray(filePath){
//return an array of RGB values that correspond to the image
}
答案 0 :(得分:4)
如果您的图片是PNG格式,请查看https://github.com/devongovett/png.js/
答案 1 :(得分:3)
你可以尝试https://www.npmjs.com/package/jimp 这可能很有用:
Jimp.read("http://www.example.com/path/to/lenna.jpg", function (err, image) {
image.getPixelColor(x, y); // returns the colour of that pixel e.g. 0xFFFFFFFF
});
要获得RGB,您可以使用:
Jimp.intToRGBA(hex); // e.g. converts 0xFFFFFFFF to {r: 255, g: 255, b: 255, a:255}