Link
Skip to main content

Convert WMF to PNG

The JDeli Java image conversion library comes with WMF support makes it very easy to convert WMF to PNG image files in Java and other languages/scripts.

To run the code examples you will need to download the JDeli jar:

Download JDeli

How to convert WMF into PNG in Java

  1. Read WMF image into Java
    BufferedImage bufferedImage = JDeli.read(new File("wmfImageFile.wmf"));  
    
  2. Process image if needed (scale, sharpen, lighten, watermark, etc)
    bufferedImage = operations.apply(BufferedImage bufferedImage); // Optional
    
  3. Write out BufferedImage as PNG image file
    JDeli.write(bufferedImage, "png", new File("pngImageFile.png"));
    

View Javadoc

Export WMF to PNG in one line of code

The JDeli.convert() methods allow you to save WMF as PNG in just ONE line of code!

Using File

JDeli.convert(File inFile, File outFile);

Using InputStream and OutputStream

JDeli.convert(InputStream inputStream, OutputStream outputStream, "png");

Using byte[]

byte[] outputData = JDeli.convert(byte[] inputData, "png");

Configure Output Settings

This option allows you to specify an EncoderOptions object to configure output settings such as image compression.

JDeli.convert(File inFile, EncoderOptions outputOptions, File outfile);

Batch convert WMF to PNG from command line

Convert images 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 png "inputFileOrDir" "outputDir"

Get started with JDeli in 3 steps

  1. Fill in the form to download the trial jar →
  2. Copy the code snippets as instructed on the next page
  3. Build your solution using our docs

Learn more about JDeli

Start Your Free Trial