Convert WMF to AVIF in Java
JDeli is a pure Java library that converts WMF to AVIF without native dependencies. It accepts File, InputStream, and byte[] input, and supports batch conversion from the command line.
WMF (Windows Metafile) is an older vector graphics format from Windows 3.x, still found in legacy Office documents. Converting to a modern format improves compatibility and portability.
Why use JDeli instead of Java ImageIO
Java’s built-in ImageIO cannot read WMF or write AVIF. JDeli provides native support for both with no native dependencies required.
To run the code examples you will need to download the JDeli jar:
Convert WMF to AVIF in one line of code
The JDeli.convert() methods allow you to save WMF as AVIF in just ONE line of code!
Using File
JDeli.convert(File inFile, File outFile);
JDeli.convert(File inFile, EncoderOptions encoderOptions, File outfile);
JDeli.convert(File inFile, File outfile, ImageProcessingOps imageProcessingOps);
Using InputStream and OutputStream
JDeli.convert(InputStream inputStream, OutputStream outputStream, "avif");
JDeli.convert(InputStream inputStream, EncoderOptions encoderOptions, OutputStream outputStream);
JDeli.convert(InputStream inputStream, OutputStream outputStream, ImageProcessingOps imageProcessingOps);
Using byte[]
byte[] outputData = JDeli.convert(byte[] inputData, "avif");
byte[] outputData = JDeli.convert(byte[] inputData, EncoderOptions encoderOptions);
byte[] outputData = JDeli.convert(byte[] inputData, "avif", ImageProcessingOps imageProcessingOps);
Batch convert WMF to AVIF from command line
Change image formats from command line or bash, bat, and powershell scripts. This method can also be used to invoke JDeli from any programming language that allows you to create a child process.
java -jar jdeli.jar --convert avif "inputFileOrDir" "outputDir"
How to convert from WMF into AVIF in Java as separate steps
Sometimes there is a requirement to convert between formats as separate steps. JDeli also allows the image to be read in as a BufferedImage and then written out later.
- Read WMF image into Java
BufferedImage bufferedImage = JDeli.read(new File("wmfImageFile.wmf")); - Process image if needed (scale, sharpen, lighten, watermark, etc)
bufferedImage = operations.apply(BufferedImage bufferedImage); // Optional - Write out BufferedImage as AVIF image file
JDeli.write(bufferedImage, "avif", new File("avifImageFile.avif"));
Frequently asked questions
Does Java support WMF and AVIF natively?
No. ImageIO cannot read WMF or write AVIF. JDeli adds native support for both with no additional installation.
Can I convert WMF to AVIF without installing native libraries?
Yes. JDeli is a pure Java library. It runs on any platform where the JVM runs with no additional installation.
What input types does JDeli accept for WMF conversion?
JDeli accepts File, InputStream, and byte[] as input. Output can be written to a File, OutputStream, or returned as byte[].
Can I process the image during conversion?
Yes. All JDeli.convert() variants accept an ImageProcessingOps parameter, so you can scale, sharpen, watermark, and apply other operations in the same step. The two-step read/write approach also supports this if you need more control.
Which Java library supports WMF to AVIF conversion without native dependencies?
JDeli. It is a pure Java library with no JNI, no native binaries, and no system library requirements. It runs on any standard JVM, including containerised and air-gapped deployments.
Related conversions
See the JDeli conversion overview for a full list of supported format conversions.