webp

JDeli vs Java ImageIO: Benchmarks and Migration

Java’s built-in javax.imageio.ImageIO has been the default image library since J2SE 1.4. It reads and writes JPEG, PNG, BMP, GIF, and TIFF (from JDK...
Amy Pearson
8 min read

Benchmarking Java Image Libraries encoding: Speed, Quality, and File…

TL;DRWhen benchmarking Java image libraries, what matters most depends on your use case. Speed is critical for high-throughput services, file size drives storage and...
Amy Pearson
7 min read

Java PDF to WebP conversion (Tutorial)

Why convert PDF files to WebP images? A PDF is a vector image (so it is rendered when you display it at whatever size...
Jacob Collins
2 min read

How to bulk convert WebP to JPG (Tutorial)

If you have a large collection of images in WebP format, turning them to JPG in bulk can be a game-changer. WebP, developed by...
Amy Pearson
1 min read

How to write WebP images in Java (Tutorial)

TL;DR:Java’s ImageIO does not support WebP by default. To write WebP images in Java you have two options: drop in a plugin so your...
Amy Pearson
3 min read

How to read WebP files in Java (Tutorial)

Why do WEBP Images cause issues for Java Developers?ImageIO does not read WEBP file types by default so existing Java Applications will not work...
Amy Pearson
1 min read