0.0.3 • Published 6 years ago

@cutii/bmp-js v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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