Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scijs/get-pixels
Reads an image into an ndarray
https://github.com/scijs/get-pixels
Last synced: 6 days ago
JSON representation
Reads an image into an ndarray
- Host: GitHub
- URL: https://github.com/scijs/get-pixels
- Owner: scijs
- License: mit
- Created: 2013-05-14T21:26:35.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-07-19T18:37:51.000Z (7 months ago)
- Last Synced: 2025-02-02T15:01:35.584Z (13 days ago)
- Language: JavaScript
- Size: 530 KB
- Stars: 542
- Watchers: 13
- Forks: 108
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nodejs - get-pixels - Reads an image into an ndarray. ![](https://img.shields.io/github/stars/scijs/get-pixels.svg?style=social&label=Star) (Repository / Image)
README
get-pixels
==========
Given a URL/path, grab all the pixels in an image and return the result as an [ndarray](https://github.com/mikolalysenko/ndarray). Written in 100% JavaScript, works both in browserify and in node.js and has no external native dependencies.Currently the following file formats are supported:
* `PNG`
* `JPEG`
* `GIF`Example
=======```javascript
var getPixels = require("get-pixels")getPixels("lena.png", function(err, pixels) {
if(err) {
console.log("Bad image path")
return
}
console.log("got pixels", pixels.shape.slice())
})
```Install
=======npm install get-pixels
### `require("get-pixels")(url[, type], cb(err, pixels))`
Reads all the pixels from url into an ndarray.* `url` is the path to the file. It can be a relative path, an http url, a data url, or an [in-memory Buffer](http://nodejs.org/api/buffer.html).
* `type` is an optional mime type for the image (required when using a Buffer)
* `cb(err, pixels)` is a callback which gets triggered once the image is loaded.**Returns** An ndarray of pixels in raster order having shape equal to `[width, height, channels]`.
**Note** For animated GIFs, a 4D array is returned with shape `[numFrames, width, height, 4]`, where each frame is a slice of the final array.
Credits
=======
(c) 2013-2014 Mikola Lysenko. MIT License