webp-maker

1.0.1 • Public • Published

webp maker

  • Transform PNG, JPG files to webp.
  • Create animated webp.

install

$ npm install -D webp-maker

use

// webp.js

// Transform PNG files from the folder into webp files.
cwebp({
	from: './origin',
	to: './webp',
	quality: 90
}).then(() => {
// Create an animated webp with the transformed webp file.
	awebp({
		from: './webp',
		fps:10,
		to: './awebp/ani.webp'
	});
});

Methods

cwebp

Transform PNG, JPG files to webp.

Name Type Default description
from String 변환 폴더 경로 또는 파일 경로
to String 변환 완료 폴더 경로
quality Number 75 변환 품질

awebp

Create animated webp.

Name Type Default description
from String 변환 대상 .webp 파일 폴더 경로
to String 변환 완료 .webp 파일 경로
fps Number 0
repeat Number 75 반복 횟수

awebp sample

Alt text of the image

Package Sidebar

Install

npm i webp-maker

Weekly Downloads

7

Version

1.0.1

License

MIT

Unpacked Size

1.35 MB

Total Files

21

Last publish

Collaborators

  • demoon84