@io-arc/webp-converter
v1.0.3
Published
Convert an image to webp
Downloads
4
Readme
@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.