Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 2.3 KB

README.md

File metadata and controls

52 lines (40 loc) · 2.3 KB

react-native-pixel-bmp

npm version npm downloads npm licence Platform

Parse Bitmap to ImageData for React Native.

Installation

$ npm install react-native-pixel-bmp

For RN >= 0.65, run npm install react-native-blob-util.

For RN < 0.65, run npm install react-native-blob-util@0.16.3, and patch manually to fix: with react-native-web product build will export 'URIUtil' (reexported as 'URIUtil') was not found.

var pixelBitmap = require('react-native-pixel-bmp');
console.log(pixelBitmap); // object

API

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

return images is Array contains one ImageData.

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

pixelBitmap.parse(file).then(function(images){
  console.log(images[0]);
});
// {width: 128, height: 128, bitPP: 24, bottomUp: true, compression: 0, headerSize: 40, data: <Uint8Array ..>}

Related projects

License

MIT