image-type alternatives and similar modules
Based on the "Image" category.
Alternatively, view image-type alternatives based on common mentions on social networks and blogs.
-
sharp
High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, AVIF and TIFF images. Uses the libvips library. -
jimp
An image processing library written entirely in JavaScript for Node, with zero external or native dependencies. -
probe-image-size
Get image size without full download. Supported image types: JPG, GIF, PNG, WebP, BMP, TIFF, SVG, PSD, ICO.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of image-type or a related project?
README
image-type
Detect the image type of a Buffer/Uint8Array
See the file-type
module for more file types and a CLI.
Install
npm install image-type
Usage
Node.js
import {readChunk} from 'read-chunk';
import imageType from 'image-type';
const buffer = await readChunk('unicorn.png', {length: 12});
await imageType(buffer);
//=> {ext: 'png', mime: 'image/png'}
Or from a remote location:
import https from 'node:https';
import imageType from 'image-type';
const url = 'https://upload.wikimedia.org/wikipedia/en/a/a9/Example.jpg';
https.get(url, response => {
response.on('readable', () => {
(async () => {
const chunk = response.read(imageType.minimumBytes);
response.destroy();
console.log(await imageType(chunk));
//=> {ext: 'jpg', mime: 'image/jpeg'}
})();
});
});
Browser
const xhr = new XMLHttpRequest();
xhr.open('GET', 'unicorn.png');
xhr.responseType = 'arraybuffer';
xhr.onload = () => {
(async () => {
await imageType(new Uint8Array(this.response));
//=> {ext: 'png', mime: 'image/png'}
})();
};
xhr.send();
API
imageType(input)
Returns an Promise<object>
with:
ext
- One of the supported file typesmime
- The MIME type
Or undefined
when there is no match.
input
Type: Buffer | Uint8Array
It only needs the first .minimumBytes
bytes.
minimumBytes
Type: number
The minimum amount of bytes needed to detect a file type. Currently, it's 4100 bytes, but it can change, so don't hardcode it.
Supported file types
jpg
png
gif
webp
flif
cr2
tif
bmp
jxr
psd
ico
bpg
jp2
- JPEG 2000jpm
- JPEG 2000jpx
- JPEG 2000heic
cur
dcm
- DICOM Image File
SVG isn't included as it requires the whole file to be read, but you can get it here.