0.0.3 • Published 8 years ago
@cutii/bmp-js v0.0.3
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-jsHow 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 compressionLicense
U can use on free with MIT License
0.0.3
8 years ago