Skip to content

matsukky/get-pixels

 
 

Repository files navigation

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())
})

About

Reads an image into an ndarray

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%