0.0.8 • Published 4 years ago

gulp-images-resizer v0.0.8

Weekly downloads
163
License
MIT
Repository
github
Last release
4 years ago

gulp-images-resizer

Stats \ Images resizer for gulp

Install

$ npm install gulp-images-resizer

Usage

let resizer = require('gulp-images-resizer');

gulp.task('resize', function() {
    return gulp.src('src/**/*.*')
	.pipe(resizer({
            format: "png",
            width: "50%"
        }))
	.pipe(gulp.dest('dest/'));
});

Available options

  • verbose - log file processing options, each image as processed. Default: false
  • format - fromat of output files (png, jpg, gif, bmp or ). Default:
  • width - width of output images (fixed, percentage or -1 for auto). Default: -1
  • height - height of output images (fixed, percentage or -1 for auto). Default: -1
  • noCrop - disable the crop feature. If true it will choose the max size between height/width. Default: false
  • quality - quality of output images (from 0 to 100). Default: 100
  • tinify - tinify images using TinyPNG. Default: false
  • tinifyKey - TinyPNG key. Default: ""
0.0.8

4 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago