Name Last Update Last Commit     3a28b93d33b – fleat:合并 history
File_empty ..
File_dir lib Loading commit data... Ajax_loader_tree
File_dir test Loading commit data... Ajax_loader_tree
File_txt .npmignore Loading commit data... Ajax_loader_tree
File_txt LICENSE Loading commit data... Ajax_loader_tree
File_txt README.md Loading commit data... Ajax_loader_tree
File_txt bmp-js.iml Loading commit data... Ajax_loader_tree
File_txt index.js Loading commit data... Ajax_loader_tree
File_txt package.json Loading commit data... Ajax_loader_tree
README.md

bmp-js

A pure javascript Bmp encoder and decoder for node.js

Supports all bits decoding(1,4,8,16,24,32) and encoding with 24bit.

##Install

$ npm install bmp-js

How to use?

###Decode BMP
```js
var bmp = require("bmp-js");
var bmpBuffer = fs.readFileSync('bit24.bmp');
var bmpData = bmp.decode(bmpBuffer);

`bmpData` has all properties includes:

1. fileSize,reserved,offset

2. headerSize,width,height,planes,bitPP,compress,rawSize,hr,vr,colors,importantColors

3. palette

4. data-------byte array order by ABGR ABGR ABGR,4 bytes per pixel


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

License

U can use on free with MIT License