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-responsivevar 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: 'logo@2x.png'
},{
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: 'logo@2x.png'
},
'background-*.png': {
width: 1400,
withoutEnlargement: true
}
}{
'logo.png': [{
width: 200,
rename: 'logo@1x.png'
},{
width: 400,
rename: 'logo@2x.png'
}],
'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 - 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 - 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: 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
- 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