gulp-responsive
Generates images at different sizes
gulp-responsive
depends on sharp. Sharp is one of the fastest Node libraries for resizing JPEG, PNG, WebP and TIFF images.
Before installing gulp-responsive
you should install the libvips library. Further information and instructions can be found in the sharp readme.
$ npm install --save-dev gulp-responsive
var gulp = require('gulp');
var responsive = require('gulp-responsive');
gulp.task('default', function () {
return gulp.src('src/*.png')
.pipe(responsive([{
name: 'logo.png',
width: 200
},{
name: 'logo.png',
width: 200 * 2,
rename: '[email protected]'
},{
name: 'background-*.png',
width: 700
},{
name: 'cover.png',
width: '50%'
}]))
.pipe(gulp.dest('dist'));
});
Configuration can be provided in one of the following formats:
[{
name: 'logo.png',
width: 200,
height: 100
},{
name: 'banner.png',
width: 500
}]
{
'logo.png': {
width: 300,
height: 200,
rename: '[email protected]'
},
'background-*.png': {
width: 1400,
withoutEnlargement: true
}
}
{
'logo.png': [{
width: 200,
rename: '[email protected]'
},{
width: 400,
rename: '[email protected]'
}],
'background-*': [{
height: 400
}]
}
Configuration unit is an object:
- name: String - filename glob pattern
- width: Number or String - width in pixels or percentage of the original, not set by default
- height: Number or String - height in pixels or percentage of the original, not set by default
- withoutEnlargement: Boolean - do not enlarge the output image, default
true
- skipOnEnlargement: Boolean - do not write an output image at all if the original image is smaller than the configured width or height, default
false
- max: Boolean - resize to the max width or height the preserving aspect ratio (both width and height have to be defined), default
false
- quality: Number - output quality for JPEG, WebP and TIFF, default
80
- progressive: Boolean - progressive (interlace) scan for JPEG and PNG output, default
false
- withMetadata: Boolean - include image metadata, default
false
- compressionLevel: Number - zlib compression level for PNG, default
6
- rename: String, Object or Function - renaming options, file will not be renamed by dafault
Detailed description of each option can be found in the sharp readme.
Renaming is implemented by rename module. Options are correspond options of gulp-rename module.
Type: boolean
Default: true
Emit error when configuration is not used.
Type: boolean
Default: true
Emit error when image is not used.
Type: boolean
Default: false
Keep unmatched images in the stream.
To use this option errorOnUnusedImage
should be false
.
Type: boolean
Default: true
Emit error when image is enlarged.
You can specify the following global configuration parameters in the options
object:
- withoutEnlargement: Boolean - do not enlarge the output image
- skipOnEnlargement: Boolean - do not write an output image at all if the original image is smaller than the configured width or height
- quality: Number - output quality for JPEG, WebP and TIFF
- progressive: Boolean - progressive (interlace) scan for JPEG and PNG output
- withMetadata: Boolean - include image metadata
- compressionLevel: Number - zlib compression level for PNG
MIT © Eugeny Vlasenko