How to write a WebP image with ImageIO
- Download webp-imageio plugin and add it to your classpath.
- Create a File (or OutputStream) object
- Pass image, WebP type, and File (or OutputStream) object into write method
and the the Java code to write WebP with ImageIO…
File file = new File("/path/to/outputFile.webp");
ImageIO.write(bufferedImage, "webp", file);
How to write a WebP image with JDeli
- Add JDeli to your class or module path. (download link to the trial jar).
- Create a File (or OutputStream) object
- Pass image, WEBP type, and File (or OutputStream) object into write method
and the Java code to write WebP with JDeli…
File file = new File("/path/to/outputFile.webp");
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 output.
WebpEncoderOptions options = new WebpEncoderOptions();
JDeli.write(bufferedImage, options, file);
In below picture, my original file was a .jpg image, and I used JDeli to write it out as a .webp image.
More on WebP
What are WebP files used for?
The WebP file format was developed by Google to provide high-quality lossy and lossless compression for web images. 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 a WebP Java library. I will demonstrate using an Open source ImageIO plugin (which extends ImageIO to provide WebP support), and using the JDeli Image Library.
Which web browsers support WebP?
WebP is supported by the most popular web browsers including Google chrome, Safari, Microsoft edge, Mozilla firefox and many more.
Are you a Java Developer working with Image files?
// Read an image
BufferedImage bufferedImage = JDeli.read(dicomImageFile);
// Read an image
BufferedImage bufferedImage = JDeli.read(heicImageFile);
// Write an image
JDeli.write(bufferedImage, "heic", outputStreamOrFile);
// Read an image
BufferedImage bufferedImage = JDeli.read(jpegImageFile);
// Write an image
JDeli.write(bufferedImage, "jpeg", outputStreamOrFile);
// Read an image
BufferedImage bufferedImage = JDeli.read(jpeg2000ImageFile);
// Write an image
JDeli.write(bufferedImage, "jpx", outputStreamOrFile);
// Write an image
JDeli.write(bufferedImage, "pdf", outputStreamOrFile);
// Read an image
BufferedImage bufferedImage = JDeli.read(pngImageFile);
// Write an image
JDeli.write(bufferedImage, "png", outputStreamOrFile);
// Read an image
BufferedImage bufferedImage = JDeli.read(tiffImageFile);
// Write an image
JDeli.write(bufferedImage, "tiff", outputStreamOrFile);
// Read an image
BufferedImage bufferedImage = JDeli.read(webpImageFile);
// Write an image
JDeli.write(bufferedImage, "webp", outputStreamOrFile);
Why do developers choose JDeli over free alternatives?
- Works with newer image formats such as AVIF, HEIC, JPEG XL, WEBP
- Better support than alternatives for JPEG, PNG, TIFF.
- Prevent JVM crashes caused by native code in other image libraries
- Better performance than other popular Java image libraries
I don’t see any difference between the lines of code for “how to write image with ImageIO” and “JDeli.” Did you accidentally copy the same lines of code to both examples?
Hi Roman. Thank you for letting us know, we must have missed that! We have now changed it and updated the article, hope that helps.