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

constrain-img

v2.0.0

Published

A command line or programatic tool to constrain images in a folder to a max width and height.

Downloads

14

Readme

ConstrainImg

ConstrainImg is a command-line or progammatic tool for resizing multiple images so that they do not exceed a specified width and height.

Command Line

Installation

You must have GraphicsMagick installed on your machine. In Mac OS X, you can use Homebrew:

brew install graphicsmagick

Then, to install ConstrainImg:

npm install constrain-img -g

Usage

constrainImg [<source_dir>] [<out_dir>] [<width>] [<height>] [<options>] [options]

Example:

  constrainImg myimages newimages 200 100

This will copy the images in the folder myimages to the folder newimages and resize them so that the width of any image does not exceed 200 pixels and the height of any image does not exceed 100.

Or more explicitly:

  constrainImg -s myimages -o newimages -w 200 -h 100

More compact syntaxes:

  • constraingImg 50 -f: (One argument) Constrain all images in current directory to 50 width and 50 height.
  • constrainImg 50 75 -f: (Two arguments) Constrain all images in current directory to 50 width and 75 height.

Options

  • -s, --source: The source folder. Defaults to the current working directory.
  • -o, --out: The out (export) destination. Defaults to the current working directory.
  • -w, --width: Mandatory. The constraining width.
  • -h, --height: Mandatory. The constraining height.
  • --suffix: A suffix to append to each filename on export.
  • --prefix: A prefix to prepend to each filename on export.
  • --quiet: Prevent log messages from printing.
  • -q, --quality: Quality of compression. 0 is minimum, 100 is maximum. Defaults to 100.
  • -f, --force: Allow source files to be overwritten.

Programmatic

The package exports a function that takes two arguments: a dictionary of options and an optional callback.

The available options match the command line options listed above.

The callback function is node-style; its first argument is an error or null if no error occurred. There are no subsequent arguments.

The function returns a promise.

Installation

npm install constrain-img

Usage

var constrainImg = require('constrain-img');
constrainImg({
  source: 'myimages',
  out: 'newimages',
  width: 200,
  height: 100
  suffix: '_new',
  prefix: 'myprefix_',
  quiet: true
})
.then(function(){
  // done!
});