How to process AVIF Images in Java Applications?

Viewed 36

I have a Spring Boot/Java 17 application that processes multiple images.

For this I use the libs:

  • org.apache.commons.imaging;
  • javax.imageio;

When processing some images, I had an error due to a new format that I was not aware of - AVIF.

This appears to be a new "next generation" image format developed by Netflix, but the libs I use don't use it yet.

Do you know any alternative to process images with this format?

0 Answers
Related