Bethan Palmer Bethan is a Java developer and a Java Champion. She has spoken at conferences including JavaOne/Code One, DevFest and NetBeans days. She has a degree in English Literature.

How to read WebP files in Java

39 sec read

WEBP icon

In this blog post, I will show you how to read WebP files in Java. We also have a related article covering how to write WebP files in Java.

ImageIO does not support WebP file types by default so you will need to use an ImageIO plugin or an external library. I will demonstrate using an Open source ImageIO plugin and using the JDeli Image Library.

How to read a WebP image in Java with ImageIO

  1. Download an ImageIO plugin (try this one or this one) and add it to classpath.
  2. Create a File handle, InputStream, or URL pointing to the raw WebP image.
  3. ImageIO will now be able to read a WebP file into a BufferedImage. This syntax is like so:
    BufferedImage image = ImageIO.read(webpfFileOrInputStreamOrURL)

How to read a WebP image in Java with JDeli

  1. Add JDeli to your class or module path. (download the trial jar).
  2. Create a File handle, InputStream pointing to the raw WebP image. You can also use a byte[] containing the image data.
  3. Read the WebP image into a BufferedImage
    BufferedImage image = JDeli.read(webpFile);


Why do developers choose JDeli over free alternatives?

  1. Works with newer image formats such as AVIF, HEIC, JPEG XL, WEBP (AVIF next release) that are not supported in Java.
  2. Better support than alternatives for JPEG, PNG, TIFF.
  3. Process images up to 3x faster than ImageIO and other Java image libraries.
  4. Prevent JVM crashes caused by native code in other image libraries such as ImageIO.
  5. Image security as JDeli processes images on your servers with no calls to any external system or third party library.

Are you a Java Developer working with Image files?

Bethan Palmer Bethan is a Java developer and a Java Champion. She has spoken at conferences including JavaOne/Code One, DevFest and NetBeans days. She has a degree in English Literature.