Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
imagemin-jpeg-recompress
Advanced tools
jpeg-recompress imagemin plugin
$ npm install --save imagemin-jpeg-recompress
var Imagemin = require('imagemin');
var imageminJpegRecompress = require('imagemin-jpeg-recompress');
new Imagemin()
.src('images/*.jpg')
.dest('build/images')
.use(imageminJpegRecompress({loops: 3}))
.run();
You can also use this plugin with gulp:
var gulp = require('gulp');
var imageminJpegRecompress = require('imagemin-jpeg-recompress');
gulp.task('default', function () {
return gulp.src('images/*.jpg')
.pipe(imageminJpegRecompress({loops: 3})())
.pipe(gulp.dest('build/images'));
});
Type: boolean
Default: false
Favor accuracy over speed.
Type: string
Default: medium
Set a quality preset. Available presets: low
, medium
, high
and veryhigh
.
Type: string
Default: ssim
Set comparison method. Available methods: mpe
, ssim
, ms-ssim
and smallfry
.
Type: number
Default: 0.9999
Set target quality.
Type: number
Default: 40
Minimum JPEG quality.
Type: number
Default: 95
Maximum JPEG quality.
Type: number
Default: 6
Set the number of attempts.
Type: number
Default: 0
Set defish strength.
Type: boolean
Default: true
Enable progressive encoding.
Type: string
Default: default
Set subsampling method. Available values: default
, disable
.
MIT © imagemin
FAQs
jpeg-recompress imagemin plugin
The npm package imagemin-jpeg-recompress receives a total of 2,502 weekly downloads. As such, imagemin-jpeg-recompress popularity was classified as popular.
We found that imagemin-jpeg-recompress demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.