All Projects → imagemin → Imagemin Zopfli

imagemin / Imagemin Zopfli

Licence: mit
zopfli plugin for imagemin

Programming Languages

javascript
184084 projects - #8 most used programming language

imagemin-zopfli GitHub Actions Status

Zopfli imagemin plugin

Install

$ npm install --save imagemin-zopfli

Usage

const imagemin = require('imagemin');
const imageminZopfli = require('imagemin-zopfli');

imagemin(['images/*.png'], 'build/images', {
	use: [
		imageminZopfli({more: true})
	]
}).then(() => {
	console.log('Images optimized');
});

API

imageminZopfli([options])(buffer)

options

Type: Object

8bit

Type: boolean
Default: false

Convert 16-bit per channel image to 8-bit per channel.

transparent

Type: boolean
Default: false

Allow altering hidden colors of fully transparent pixels.

iterations

Type: integer
Default: 15

Number of iterations for images smaller than 200 KiB.

more

Type: boolean
Default: false

Compress more using more iterations (depending on file size).

buffer

Type: Buffer

Buffer to optimize.

License

MIT © imagemin

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].