is-psd
Check if a Buffer/Uint8Array is a PSD image
Used by image-type.
Install
$ npm install --save is-psd
$ bower install --save is-psd
$ component install sindresorhus/is-psd
Usage
Node.js
var readChunk = require('read-chunk');
var isPsd = require('is-psd');
var buffer = readChunk.sync('unicorn.psd', 0, 4);
isPsd(buffer);
Browser
var xhr = new XMLHttpRequest();
xhr.open('GET', 'unicorn.psd');
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
isPsd(new Uint8Array(this.response));
};
xhr.send();
API
isPsd(buffer)
Accepts a Buffer (Node.js) or Uint8Array.
It only needs the first 4 bytes.
License
MIT © Sindre Sorhus