Read WEBP image in Java
You can read WEBP image files in Java with JDeli’s WEBP Decoder.
Key information:
- 100% Java solution. No dlls or dependencies on native code
- Supports Lossy Compression
Quick start:
BufferedImage image = JDeli.read(webpImageFile);
or
WebpDecoder decoder = new WebpDecoder();
BufferedImage image = decoder.read(webpData);