pixel-jpg
v0.0.1
Published
Parse JPEG to ImageData in cross-platform
Downloads
16
Readme
PixelJpg
Parse JPEG to ImageData in cross-platform.
Installation
$ npm install pixel-jpg --save
var pixelJpeg= require('pixel-jpg');
console.log(pixelJpeg); //object
API
pixelJpg.parse(file
) -> promise.then(images
)
return images
is Array contains one or more ImageData
.
Return the
object
instead ofImageData
in Node.js
var file= 'https://59naga.github.io/fixtures/still.JPG';
pixelJpeg.parse(file).then(function(images){
console.log(images[0]);
});
// {width: 256, height: 192, data: <Uint8Array ..>}