Is there an easy way in Node.js to read a PNG file and get the pixels of the image? Something like node-image, but the other way :)
I went through the libraries listed a
I think
var myimage = new PNG('myimage.png');
should be
var myimage = new PNG.load('myimage.png');