0.0.1 • Published 9 years ago

pixel-bmp v0.0.1

Weekly downloads
46
License
MIT
Repository
github
Last release
9 years ago

pixelBitmap NPM version Build Status Coverage Status

Sauce Test Status

Parse Bitmap to ImageData in cross-platform.

Installation

$ npm install pixel-bmp --save
var pixelBitmap= require('pixel-bmp');
console.log(pixelBitmap); //object

API

pixelBitmap.parse(file) -> promise.then(images)

return images is Array contains one or more ImageData.

Return the object instead of ImageData in Node.js

var file= 'https://59naga.github.io/fixtures/still.BMP';

pixelBitmap.parse(file).then(function(images){
  console.log(images[0]);
});
// {width: 128, height: 128, data: <Uint8Array ..>}

Unsupport

  • 32bit bitmap

Related projects

License

MIT

0.0.1

9 years ago

0.0.0

9 years ago

0.0.0-alpha.3

9 years ago

0.0.0-alpha.2

9 years ago

0.0.0-alpha.1

9 years ago

0.0.0-alpha.0

9 years ago