Socket
Socket
Sign inDemoInstall

imagemin-pngquant

Package Overview
Dependencies
307
Maintainers
5
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    imagemin-pngquant

pngquant imagemin plugin


Version published
Weekly downloads
384K
decreased by-4.03%
Maintainers
5
Created
Weekly downloads
 

Readme

Source

imagemin-pngquant Build Status Build status

pngquant imagemin plugin

Install

$ npm install imagemin-pngquant

Usage

const imagemin = require('imagemin');
const imageminPngquant = require('imagemin-pngquant');

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

API

imageminPngquant([options])(input)

Returns a Promise for a Buffer.

options
floyd

Type: number boolean
Default: 0.5

Controls level of dithering (0 = none, 1 = full).

nofs

Type: boolean
Default: false

Disable Floyd-Steinberg dithering.

posterize

Type: number

Reduce precision of the palette by number of bits. Use when the image will be displayed on low-depth screens (e.g. 16-bit displays or compressed textures).

quality

Type: string

Instructs pngquant to use the least amount of colors required to meet or exceed the max quality. If conversion results in quality below the min quality the image won't be saved.

Min and max are numbers in range 0 (worst) to 100 (perfect), similar to JPEG.

speed

Type: number
Default: 3

Speed/quality trade-off from 1 (brute-force) to 10 (fastest). Speed 10 has 5% lower quality, but is 8 times faster than the default.

verbose

Type: boolean
Default: false

Print verbose status messages.

input

Type: Buffer Stream

Buffer or stream to optimize.

License

MIT © Imagemin

Keywords

FAQs

Last updated on 15 Mar 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc