Site iconJava PDF Blog

How to read EMF files in Java with JDeli

In this post, I will show you how to read EMF files into Java as a BufferedImage. This converts the EMF file into a bitmap, so you may also be interested in our post on How to convert EMF files to SVG in Java.

What is EMF file format?

EMF file format is a public vector image format invented by Microsoft and very popular on the Windows platform. You can learn more about them in our post “What are the WMF and EMF image file formats?”.

JDeli can read EMF files directly into Java as a Buffered Image. This can be manipulated in Java and saved out to another file format.

The filename extension for EMF files is: .emf

How to read an EMF image in Java with JDeli

  1. Add JDeli to your class or module path. (download the trial jar).
  2. Read the EMF image into a BufferedImage
    //Read Image (can also be OutputStream or byte array)
    BufferedImage image = JDeli.read(emfFile);