Socket
Socket
Sign inDemoInstall

imagemin-zopfli

Package Overview
Dependencies
Maintainers
7
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imagemin-zopfli

Zopfli imagemin plugin


Version published
Weekly downloads
1.8K
decreased by-18.87%
Maintainers
7
Weekly downloads
 
Created
Source

imagemin-zopfli Build 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

Keywords

FAQs

Package last updated on 29 May 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc