Socket
Book a DemoInstallSign in
Socket

@vingle/bmp-js

Package Overview
Dependencies
Maintainers
7
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vingle/bmp-js

A pure javascript BMP encoder and decoder

0.2.5
latest
Source
npmnpm
Version published
Weekly downloads
9.2K
15.42%
Maintainers
7
Weekly downloads
 
Created
Source

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

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

bmpData has all properties, including:

  • fileSize
  • reserved
  • offset
  • headerSize
  • width
  • height
  • planes
  • bitPP
  • compress
  • rawSize
  • hr
  • vr
  • colors
  • importantColors
  • palette
  • data a. This is a byte array b. The bytes are ordered as follows: ABGR (alpha, blue, green, red) c. 4 bytes represent 1 pixel

Encode RGB

var bmp = require("bmp-js");
var fs = require("fs");
var bmpData = {
    data, //Buffer
    width, //Number
    height //Number
};
var rawData = bmp.encode(bmpData); //defaults to no compression
fs.WriteFileSync('./image.bmp', rawData.data);

License

You can use for free with MIT License

Keywords

bmp

FAQs

Package last updated on 04 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.