htmlimage
v1.1.0
Published
images, like in the browser, but in node
Downloads
20
Maintainers
Readme
HTMLImageElement
A standalone image element doing HTMLImageElement related things, on node.js
install
npm install htmlimage
use
NOTE: this library currently only works with png
files
var Image = require('htmlimage').HTMLImageElement;
var i = new Image();
i.onload = function() {
// do something with image.imageData.data (which is a pixel buffer)
};
i.onerror = function(err) {
// OHNOEZ!
}
i.src = "http://domain.tld/path/to/file.png";
license
MIT