coobird / thumbnailator

Thumbnailator - a thumbnail generation library for Java
MIT License
5.08k stars 780 forks source link

Do you have plans to support WebP, AVIF? #199

Closed tsyma closed 1 year ago

tsyma commented 1 year ago

Just query: Do you have plans to support WebP and AVIF? WebP is already supported by all web Browsers. https://en.wikipedia.org/wiki/WebP https://en.wikipedia.org/wiki/AVIF

coobird commented 1 year ago

The image reading and writing functionality of Thumbnailator is dependent on the capability of the Java Image I/O API which the library uses. Therefore, if you want support for WebP or AVIF, you'll need to use a Image I/O plugin that supports those formats. For example, the TwelveMonkeys ImageIO library supports WebP.

For more information, please refer to this FAQ.