Site iconJava PDF Blog

How to write WebP images in Java

WEBP icon

In this article, I will walk you through how to write out images as WebP images in Java. We also have a related article covering how to read WebP files in Java.

ImageIO does not support WebP images by default so you will need to use an ImageIO plugin or an external library. I will demonstrate using an Open source ImageIO plugin (which extends ImageIO to provide WebP support), and using the JDeli Image Library.

How to write a WebP image in Java with ImageIO

  1. Download webp-imageio plugin and add it to your classpath.
  2. Create a File (or OutputStream) object
    File file = new File("/path/to/outputFile.webp"));
  3. Pass image, WebP type, and File (or OutputStream) object into write method
    ImageIO.write(bufferedImage, "webp", file);

How to write an image as a WebP file with JDeli

  1. Add JDeli to your class or module path. (download link to the trial jar).
  2. Create a File (or OutputStream) object
    File file = new File("/path/to/outputFile.webp"));
  3. Pass image, WEBP type, and File (or OutputStream) object into write method
    JDeli.write(bufferedImage, "webp", file);

In JDeli you can also use a typesafe version

JDeli.write(bufferedImage, OutputFormat.WEBP, file);

or pass in a WebpEncoderOptions object for more control over WebP image output, such as level of Compression.

WebpEncoderOptions options = new WebpEncoderOptions();
JDeli.write(bufferedImage, options, file);