Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

image-dimensions

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

image-dimensions

Get the dimensions of an image

Source
npmnpm
Version
2.4.0
Version published
Weekly downloads
143K
3.7%
Maintainers
1
Weekly downloads
 
Created
Source

image-dimensions

Get the dimensions of an image

Works in any modern JavaScript environment (browsers, Node.js, Bun, Deno, etc).

Supporting all kinds of image formats is a non-goal. However, pull requests for adding JPEG XL are welcome.

Supported formats

  • JPEG
  • PNG (and APNG)
  • GIF
  • WebP
  • AVIF
  • HEIF (including HEIC)

Install

npm install image-dimensions

Usage

import {imageDimensionsFromStream} from 'image-dimensions';

// In this example, it will only read a few bytes of the image instead of fetching the whole thing.

const url = 'https://sindresorhus.com/unicorn';

const {body} = await fetch(url);

console.log(await imageDimensionsFromStream(body));
//=> {width: 1920, height: 1080}

API

imageDimensionsFromStream(stream: ReadableStream<Uint8Array>): Promise<{width: number; height: number} | undefined>

Get the dimensions of an image by reading the least amount of data.

Prefer this method.

Returns the image dimensions, or undefined if the image format is not supported or the image data is invalid.

Note: Returns raw pixel dimensions; orientation (EXIF or HEIF/AVIF irot) is not applied.

// Node.js example
import {createReadStream} from 'node:fs';
import {imageDimensionsFromStream} from 'image-dimensions';

const stream = ReadableStream.from(createReadStream('unicorn.png'));

console.log(await imageDimensionsFromStream(stream));
//=> {width: 1920, height: 1080}

imageDimensionsFromData(data: Uint8Array): {width: number; height: number} | undefined

Get the dimensions of an image from data.

This method can be useful if you already have the image loaded in memory.

Returns the image dimensions, or undefined if the image format is not supported or the image data is invalid.

Note: Returns raw pixel dimensions; orientation (EXIF or HEIF/AVIF irot) is not applied.

import {imageDimensionsFromData} from 'image-dimensions';

const data = getImage();

console.log(imageDimensionsFromData(data));
//=> {width: 1920, height: 1080}

CLI

npx image-dimensions unicorn.png
630x400

FAQ

How does this differ from image-size?

Advantages of this package

  • Zero dependencies
  • Smaller
  • Works in non-Node.js environments like the browser
  • Does not include unnecessary APIs for file reading

Advantages of image-size

  • Supports more image formats
  • Supports getting JPEG image orientation

Keywords

image

FAQs

Package last updated on 24 Aug 2025

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