Java AVIF Writer
The JDeli Java image library includes a AVIF Writer to write AVIF files in Java. The AVIF Encoder is written in 100% Java and provides AVIF support with no dependencies.
Key information:
- 100% Java solution. No dlls or dependencies on native code easy to use
Quick start or to replace in existing code using ImageIO:
JDeli.write(myBufferedImage, "avif", outputStreamOrFile);
or
byte[] outputData = JDeli.write(myBufferedImage, "avif");
New method for quick and simple usage
JDeli.write(myBufferedImage, OutputFormat.AVIF, outputStreamOrFile)
OutputFormat allows setting of any supported Image Format
For complete control of output:
final AvifEncoderOptions options = new AvifEncoderOptions();
//write out
JDeli.write(myBufferedImage, options, outputStreamOrFile);
AvifEncoderOptions allows setting of specific options.
Various image processing operations can be conducted on the image, detailed documentation can be found here.