1.0.1 • Published 1 year ago

webp-maker v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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.

NameTypeDefaultdescription
fromString변환 폴더 경로 또는 파일 경로
toString변환 완료 폴더 경로
qualityNumber75변환 품질

awebp

Create animated webp.

NameTypeDefaultdescription
fromString변환 대상 .webp 파일 폴더 경로
toString변환 완료 .webp 파일 경로
fpsNumber0
repeatNumber75반복 횟수

awebp sample

Alt text of the image

1.0.1

1 year ago

1.0.0

1 year ago

0.0.1

1 year ago