@cutii/bmp-js

0.0.3 • Public • Published

bmp-js

A pure javascript Bmp encoder and decoder for node.js

Supports 1bit 4bit 8bit 24bit decoding and encoding with 24bit.

##Install

$ npm install bmp-js

How to use?

###Decode BMP

var bmp = require("bmp-js");
var bmpBuffer = fs.readFileSync('aa.bmp');
var bmpData = bmp.decode(bmpBuffer);
//bmpData={data:matrix,width:Number,height:Height}

###Encode RGB

var bmp = require("bmp-js");
//bmpData={data:Buffer,width:Number,height:Height}
var rawData = bmp.encode(bmpData);//default no compression

License

U can use on free with MIT License

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @cutii/bmp-js

      Weekly Downloads

      2

      Version

      0.0.3

      License

      MIT

      Last publish

      Collaborators

      • matthieulemoine