1.0.7 • Published 3 years ago

@pintawebware/gulp-squeezeimg v1.0.7

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

squeezeimg gulp

The Gulp Squeezeimg plugin is destined to optimize unlimited images without any visible loss in quality.

Using the plugin Gulp Squeezeimg you can easily minify the size of all your images, speed up loading of your websites and applications.

You can compress your images of such formats - .png, .jpg/.jpeg, .gif, .svg, .bmp, .tiff.

Also plugin allows you to convert your images to webP and jp2 format.

Try the plugin functions right now. To do this, go to https://squeezeimg.com/.

Install

$ npm install --save-dev @pintawebware/gulp-squeezeimg

Usage

gulpfile.js

var squeezeimg = require('@pintawebware/gulp-squeezeimg');

const option = {
    token: 'Your API token',
    qlt: 60,
    method: 'compress',
    to: 'webp',
    rename: false,
  }

gulp.task('gulp-squeezeimg', function() {
  return gulp.src('images/*') 
    .pipe(squeezeimg(option))
    .pipe(gulp.dest('dist/'));
});

gulp.task('default', gulp.series('gulp-squeezeimg'));

API

squeezeimg(option)

Options Object

token :

'Your API token', https://squeezeimg.com/account/api or https://squeezeimg.com-> My account-> Api

qlt :

Quality precentage (max 80), default 60

method :

'convert or compress', default 'compress'

to

convert to format ( jp2, webp, avif ) default 'webp'

rename

rename image, default false ( If true, the file name is assigned by the server )

License MIT License (c) PintaWebware

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago