npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

image-size-stream

v1.1.0

Published

Detect the width and height of images in a stream

Downloads

3,453

Readme

image-size-stream

NPM version Build Status Build status Coverage Status Dependency Status devDependency Status

Detect the width and height of images in a stream

//       +-----------+
//       |           |
// 300px |  foo.jpg  |
//       |           |
//       +-----------+
//           400px 

var imageSizeStream = createImageSizeStream()
.on('size', function(dimensions) {
  dimensions; //=> {width: 400, height: 300, type: 'jpg'}
  stream.destroy();
});

var stream = fs.createReadStream('path/to/foo.jpg').pipe(imageSizeStream);

Installation

Use npm.

npm install --save image-size-stream

Supported image formats

API

var createImageSizeStream = require('image-size-stream');

createImageSizeStream([option])

option: Object
Return: Object (stream.Transform)

The stream tries to detect the image size and emits size or error event.

var createImageSizeStream = require('image-size-stream');
var imageSizeStream = createImageSizeStream();

option.limit

Type: Number
Default: 128 * 1024

The maximum bytes the stream can reads. It emits an error if it cannot detect the image size though it has reached the limit.

Usually the default value meets the requirements.

Events

size

This event fires when the stream detect the image size. It passes an object in the form {width: [Number], height: [Number], type: [String]} to the callback function.

type will be one of the following strings: bmp gif jpg png psd svg tiff webp

imageSizeStream.on('size', function(dimensions) {
  console.log('size: ' + dimensions.width + ' x ' + dimensions.height);
  console.log('image format: ' + dimensions.type);
});

error

This event fires when the stream failed to detect the image size. It passes an error to the callback function.

Examples

These examples show that you don't need to read the image entirely if you just want to detect its width and height.

Read data from local file system

var fs = require('fs');
var fileStream = fs.createReadStream('path/to/image.jpg');

var createImageSizeStream = require('image-size-stream');
var size = createImageSizeStream();
size
.on('size', function(dimensions) {
  console.log(dimensions);
  fileStream.destroy();
})
.on('error', function(err) {
  throw err;
});

fileStream.pipe(size);

If you want to stop reading the rest of the image file at size event, call fs.ReadStream#destroy() or fs.ReadStream#close().

Read data via HTTP

var http = require('http');

var createImageSizeStream = require('image-size-stream');
var size = createImageSizeStream();
size
.on('size', function(dimensions) {
  console.log(dimensions);
  request.abort();
})
.on('error', function(err) {
  throw err;
});

var request = http.get('url/to/image.png', function(response) {
  response.pipe(size);
});

If you want to stop loading the rest of the image file at size event, call request.abort().

License

Copyright (c) 2014 - 2015 Shinnosuke Watanabe

Licensed under the MIT License.