Files
asciidisco.com/build/node_modules/bmp-js/README.md
2023-08-01 13:49:46 +02:00

675 B

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:Buffer,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