imagemin-jpegtran
jpegtran imagemin plugin
Last updated 10 years ago by kevva .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install imagemin-jpegtran 
SYNC missed versions from official npm registry.

imagemin-jpegtran

jpegtran imagemin plugin

Install

$ npm install --save imagemin-jpegtran

Usage

const imagemin = require('imagemin');
const imageminJpegtran = require('imagemin-jpegtran');

(async () => {
	await imagemin(['images/*.jpg'], {
		destination: 'build/images',
		plugins: [
			imageminJpegtran()
		]
	});

	console.log('Images optimized');
})();

API

imageminJpegtran(options?)(buffer)

Returns a promise for a buffer.

options

Type: object

progressive

Type: boolean
Default: false

Lossless conversion to progressive.

arithmetic

Type: boolean
Default: false

Use arithmetic coding.

buffer

Type: buffer

Buffer to optimize.

Current Tags

  • 7.0.0                                ...           latest (6 years ago)

17 Versions

  • 7.0.0                                ...           6 years ago
  • 6.0.0                                ...           7 years ago
  • 5.0.2                                ...           10 years ago
  • 5.0.1                                ...           10 years ago
  • 5.0.0                                ...           10 years ago
  • 4.3.2                                ...           10 years ago
  • 4.3.1                                ...           11 years ago
  • 4.3.0                                ...           11 years ago
  • 4.2.0                                ...           11 years ago
  • 4.1.0                                ...           11 years ago
  • 4.0.0                                ...           11 years ago
  • 3.1.1                                ...           11 years ago
  • 3.1.0                                ...           11 years ago
  • 3.0.0                                ...           11 years ago
  • 2.0.0                                ...           12 years ago
  • 1.0.0                                ...           12 years ago
  • 0.1.0                                ...           12 years ago
Maintainers (1)
Downloads
Today 1
This Week 3
This Month 5
Last Day 1
Last Week 1
Last Month 1
Dependencies (3)
Dev Dependencies (4)

Copyright 2013 - present © cnpmjs.org | Home |