@paulcbetts/cwebp-bin

3.1.0 • Public • Published

cwebp-bin Build Status

WebP is a new image format that provides lossless and lossy compression for images on the web. WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG images at equivalent SSIM index.

Install

$ npm install --save cwebp-bin

Usage

var execFile = require('child_process').execFile;
var cwebp = require('cwebp-bin');

execFile(cwebp, ['input.png', '-o', 'output.webp'], function (err) {
	if (err) {
		throw err;
	}

	console.log('Image is converted!');
});

CLI

$ npm install --global cwebp-bin
$ cwebp --help

License

MIT © imagemin

Package Sidebar

Install

npm i @paulcbetts/cwebp-bin

Weekly Downloads

0

Version

3.1.0

License

MIT

Last publish

Collaborators

  • paulcbetts