@mole-inc/jpegoptim-bin

7.0.0 • Public • Published

jpegoptim-bin Node CI

jpegoptim is a utility for optimizing JPEG files that provides lossless optimization (based on optimizing the Huffman tables) and "lossy" optimization based on setting a maximum quality factor

You probably want imagemin-jpegoptim instead.

Downloads Version codecov

Install

$ npm install @mole-inc/jpegoptim-bin

Make sure you have the correct version of libjpeg. See jpegoptim's README for more information.

Usage

import {execFile} from 'child_process';
import jpegoptim from '@mole-inc/jpegoptim-bin';

const args = [
	'--overwrite',
	'--strip-all',
	'--strip-iptc',
	'--strip-icc',
	'--all-progressive',
	'--dest=build',
	'input.jpg'
];

execFile(jpegoptim, args, err => {
	console.log('Image minified');
});

CLI

$ npm install --global @mole-inc/jpegoptim-bin
$ jpegoptim --help

License

This is a fork of imagemin/jpegoptim-bin licensed under the MIT License.

see license file and vendor/jpegoptim-license.txt file.

Package Sidebar

Install

npm i @mole-inc/jpegoptim-bin

Weekly Downloads

0

Version

7.0.0

License

MIT

Unpacked Size

6.93 kB

Total Files

6

Last publish

Collaborators

  • aaharu