This fork of get-pixels update and replace the request
module, due of the end of support of it.
Currently the following file formats are supported:
PNG
JPEG
GIF
WEBP
var getPixels = require("@matsukky/get-pixels")
getPixels("lena.png", function(err, pixels) {
if(err) {
console.log("Bad image path")
return
}
console.log("got pixels", pixels.shape.slice())
})