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

impro

v0.14.2

Published

Image processing engine

Downloads

18,258

Readme

Impro

An image processing engine integrating multiple conversion libraries.

NPM version Build Status Coverage Status

Impro allows specifying the operations to apply to images and will select the correct conversion library to perform the job itself.

This library supports and is tested against node version 14 and above and includes support for the following image conversion tools:

- gifsicle (npm install gifsicle@^5.3.0)
- gm (npm install gm-papandreou@^1.23.0-patch1)
- inkscape (npm install inkscape@^3.0.0)
- jpegtran (npm install jpegtran@^2.0.0)
- optipng (npm install optipng@^4.0.0)
- pngcrush (npm install pngcrush@^3.0.0)
- pngquant (npm install pngquant@^4.0.0)
- sharp (npm install sharp@~0.32.0)
- svgfilter (npm install svgfilter@^4.1.0)

callers must install the libraries and if present they will be enabled

Introduction

Impro is desgined so that users can express what they want to do to an image of a given type rather than how to do it. Given a series of tranformations, the library will select one or more libraries to use to turn the input image into the desired output and processing is done while fully streaming data.

Background

Image processing has typically involved command line tools which are often supplied a set of command line arguments that act as a series of instructions for the properties of the image being output and any series of transformations to apply. Each of these options is modelled as an "operation".

Operations

An operation is a named constraint (property or transformation) that an output image must conform to after it is applied.

Engines

An engine is a representation a particular image library that supports a certain set of operations on images of certain types.

Pipelines

A pipeline is a programmed series operations that will be executed by one or more engines to turn an image from the input to the desired output.

Use

The impro library can be installed simply from npm:

npm install impro

The standard configuration of impro is an instance that is configured with support for all supported engines - but the presence of the image libraries is detected which means they must be installed alongside. Each library has a node module of the same name (with the exception of gm as noted above):

npm install sharp
npm install gifsicle

some of the libraries may have requirements on native packages that must be installed via an operating system package manager

Constructing image processing pipelines

By default an import of impro returns an object with all registered engines that is ready to start handling conversion operations. To do this, we create a pipeline which we instruct about what it will do to an image.

The prepared pipeline is a Duplex stream that is ready to have the input image data piped to it and will stream the output image data out of itself:

const impro = require('impro');

const pipeline = impro.createPipeline({ type: 'png' }).jpeg();

For example, the pipeline above expect to recieve a PNG input image and will convert it to a JPEG using the chaining API.

Chaining API

The pipeline exposes methods for each operation that can be supported on a method. Above, the .jpeg() is a conversion operation to the JPEG type.

Let's look at another example:

const impro = require('impro');

impro
  .createPipeline({ type: 'png' })
  .grayscale()
  .resize(100, 100)
  .jpeg()
  .progressive();

This will accept a PNG, convert it to a grayscale image, resize it and finally output it as a JPEG that is interlaced. The chaining API is intended as the standard end-user interface that exposes the full power of the library in a simple and transparent fashion.

Low-level API

For cases where impro is used as a library another API is exposed which is also used internally and underlies chaining methods: an operations list.

Each named operation is itself a small object containing a name and array of the arguments (zero or more) that are provided to it. These operations are placed in an array and can be passed directly when creating a pipeline:

const impro = require('impro');

const pipeline = impro.createPipeline({ type: 'png' }, [
  { name: 'grayscale', args: [] },
  { name: 'resize', args: [100, 100] },
  { name: 'jpeg', args: [] },
  { name: 'progressive', args: [] },
]);

The pipeline above is equivalent to the chaining API example.

License

Impro is licensed under a standard 3-clause BSD license.