gulp-jimp
A JIMP wrapper for Gulp. Provides a configuration for the full set of JIMP features, handles multiple image outputs, works purely with image buffers and deals with the Gulp stream properly. Install with:
npm install gulp-jimp
Usage
The configuration takes a set of objects with the configuration:
suffix: // If the suffix is '-1', then 'source.jpg' -> 'source-1.jpg' modifiers // Crop, Invert, Flip, Gaussian, Blur, Greyscale, Sepia, etc. type // BMP, Bitmap, JPG or JPEG. Case unnecessary and anything else is PNG.
For example:
var gulp = jimp = ; gulp;
This will output the following files:
logo-1.png
logo-2.png
logo-3.png
If you need an ES5 build for legacy purposes, just require the ES5 file:
var jimp = ;
To build the ES5 version:
npm run es5