JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 511118
  • Score
    100M100P100Q192877F
  • License MIT

gifsicle imagemin plugin

Package Exports

  • imagemin-gifsicle

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (imagemin-gifsicle) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

imagemin-gifsicle Build Status Build status

gifsicle imagemin plugin

Install

$ npm install --save imagemin-gifsicle

Usage

const imagemin = require('imagemin');
const imageminGifsicle = require('imagemin-gifsicle');

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

API

imageminGifsicle([options])(buffer)

Returns a promise for a buffer.

options

interlaced

Type: boolean
Default: false

Interlace gif for progressive rendering.

optimizationLevel

Type: number
Default: 1

Select an optimization level between 1 and 3.

The optimization level determines how much optimization is done; higher levels take longer, but may have better results.

  1. Stores only the changed portion of each image.
  2. Also uses transparency to shrink the file further.
  3. Try several optimization methods (usually slower, sometimes better results)

buffer

Type: buffer

Buffer to optimize.

License

MIT © imagemin