Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 644 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 644 Bytes

webp-io

The webp-io is convert normal image and webp file.

Usage

Maven dependency

<dependency>
    <groupId>com.hellokaton</groupId>
    <artifactId>webp-io</artifactId>
    <version>0.0.6</version>
</dependency>

API

String src  = "a.webp";
String dest = "a.png";
WebpIO.create().toNormalImage(src, dest);

WebpIO.create().toWEBP("hello.png", "hello.webp");

Okay, lets go.