@cjser/is-bmp
v2.0.0-cjser.2
Published
Check if a Buffer/Uint8Array is a BMP image
Downloads
77
Maintainers
Readme
is-bmp
Check if a Buffer/Uint8Array is a BMP image
Install
$ npm install is-bmpUsage
Node.js
import {readChunk} from 'read-chunk';
import isBmp from 'is-bmp';
const buffer = await readChunk('unicorn.bmp', {length: 2});
isBmp(buffer);
//=> trueBrowser
const xhr = new XMLHttpRequest();
xhr.open('GET', 'unicorn.bmp');
xhr.responseType = 'arraybuffer';
xhr.onload = () => {
isBmp(new Uint8Array(this.response));
//=> true
};
xhr.send();API
isBmp(buffer)
Accepts a Buffer (Node.js) or Uint8Array.
It only needs the first 2 bytes.
Related
- file-type - Detect the file type of a Buffer/Uint8Array
cjser
This package is a CommonJS-compatible build generated by cjser for projects that still need require() support. The source version matches the original npm package version, with a cjser prerelease suffix for this generated build.
Original repository: https://github.com/sindresorhus/is-bmp
