is-heic

1.0.0 • Public • Published

is-heic

Check if a Buffer/Uint8Array is a HEIC image (inspired by is-jpg)

Install

$ npm install --save is-heic

Usage

Node.js
var readChunk = require('read-chunk'); // npm install read-chunk
var isHeic = require('is-heic');
var buffer = readChunk.sync('unicorn.heic', 0, 24);
 
isHeic(buffer);
//=> true
Browser
var xhr = new XMLHttpRequest();
xhr.open('GET', 'unicorn.heic');
xhr.responseType = 'arraybuffer';
 
xhr.onload = function () {
    isHeic(new Uint8Array(this.response));
    //=> true
};
 
xhr.send();

API

isHeic(buffer)

Accepts a Buffer (Node.js) or Uint8Array.

It only needs the first 24 bytes.

License

MIT © Oleh Aleinyk

Package Sidebar

Install

npm i is-heic

Weekly Downloads

41

Version

1.0.0

License

MIT

Last publish

Collaborators

  • oaleynik