Link

Java EMF Reader

JDeli includes a EMF Reader to read EMF images into Java. The EMF Decoder is written in 100% Java with no dependencies.

Key information:

  • 100% Java solution. No dlls or dependencies on native code
  • support for rgb components

Quick start:

JDeli can automatically detect the file type and will use the EMF File Reader

BufferedImage image = JDeli.read(emfImageFile);

or

EmfDecoder decoder = new EmfDecoder();
BufferedImage image = decoder.read(emfData);

See the full Javadoc.