@matsukky/get-pixels
v3.4.0
Published
Reads the pixels of an image as an ndarray
Downloads
210
Maintainers
Readme
get-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:
PNG
JPEG
GIF
WEBP
Example
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())
})