1.0.3 • Published 2 years ago

@io-arc/webp-converter v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

@io-arc/webp-converter

PNG, JPG, GIF files to Webp files conversions.
What's Webp?

Using to imagemin.
PNG, JPG is imagemin-webp.
GIF is imagemin-imagemin-gif2webp.

See the documents.

Install

$ npm i -D @io-arc/webp-converter

Usage

import WebpConverter from '@io-arc/webp-converter'

const webp = new WebpConverter(
  ['src', 'img'],
  { png: true, jpg: true, gif: true },
  { quality: 75 },
  { lossy: true },
  ['dist', 'img']
)

More documents.