Skip to content

๐ŸŒš general format images and webp transform each other

License

Notifications You must be signed in to change notification settings

hellokaton/webp-io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

32 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

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.