3.4.0 • Published 6 months ago

@matsukky/get-pixels v3.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

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