Link

Convert WMF to JPEG2000

JDeli makes it very easy to convert WMF to JPEG2000 image files in Java and other languages/scripts.

To run the code examples you will need either:

Free trial jar

Full Customer jar

How to convert WMF into JPEG2000 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 JPEG2000 image file
    JDeli.write(bufferedImage, "jpx", new File("jpxImageFile.jpx"));
    

View Javadoc

Export WMF to JPEG2000 in one line of code

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

Using File

JDeli.convert(File inFile, File outFile);

Using InputStream and OutputStream

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

Using byte[]

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

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 JPEG2000 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 jpx "inputFileOrDir" "outputDir"