Reads the pixels of an image as an ndarray
npm install @matsukky/get-pixelsget-pixels
==========
This fork of get-pixels update and replace the `request module, due of the end of support of it. ⚠️ Works ONLY in node.js
Currently the following file formats are supported:
* PNGJPEG
* GIF
* WEBP
*
Example
=======
`javascript
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())
})
``