Class EmfDecoder

java.lang.Object
com.idrsolutions.image.JDeliImage
com.idrsolutions.image.emf.EmfDecoder
All Implemented Interfaces:
com.idrsolutions.image.Decoder

public class EmfDecoder extends com.idrsolutions.image.JDeliImage implements com.idrsolutions.image.Decoder
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static String
    getCommand(int command)
     
    read(byte[] data)
    Decodes and returns the WMF image as a BufferedImage from bytes
    read(File file)
    Decodes and returns the WMF file as a BufferedImage from a file
    readDimension(byte[] emfRawData)
    Decodes and returns the width and height of emf image
    Decodes and returns the width and height of emf image
    static void
    toSVG(File emfFile, File svgOutputFile)
     
    static void
    toSVG(InputStream emfInputStream, OutputStream svgOutputFile)
     

    Methods inherited from class com.idrsolutions.image.JDeliImage

    optimiseImage

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.idrsolutions.image.Decoder

    getImageCount, getImageCount, readEmbeddedThumbnail, readEmbeddedThumbnail, readImageAt, readImageAt, readImageSpecificMetaData, readImageSpecificMetaData, setMetadata
  • Constructor Details

    • EmfDecoder

      public EmfDecoder()
  • Method Details

    • getCommand

      public static String getCommand(int command)
    • read

      public BufferedImage read(File file) throws IOException
      Decodes and returns the WMF file as a BufferedImage from a file
      Specified by:
      read in interface com.idrsolutions.image.Decoder
      Parameters:
      file - input image file to be decoded
      Returns:
      BufferedImage decoded image
      Throws:
      IOException - if an error occurs in reading image
    • read

      public BufferedImage read(byte[] data) throws IOException
      Decodes and returns the WMF image as a BufferedImage from bytes
      Specified by:
      read in interface com.idrsolutions.image.Decoder
      Parameters:
      data - byte[] containing the WMF data to be decoded
      Returns:
      BufferedImage The decoded image
      Throws:
      IOException - if an error occurs in reading image
    • readDimension

      public Rectangle readDimension(File file) throws Exception
      Decodes and returns the width and height of emf image
      Specified by:
      readDimension in interface com.idrsolutions.image.Decoder
      Parameters:
      file - image image contained in raw data if present
      Returns:
      width and height of image
      Throws:
      Exception - if problem reading image
    • readDimension

      public Rectangle readDimension(byte[] emfRawData) throws Exception
      Decodes and returns the width and height of emf image
      Specified by:
      readDimension in interface com.idrsolutions.image.Decoder
      Parameters:
      emfRawData - image image contained in raw data if present
      Returns:
      Rectangle width and height of image
      Throws:
      Exception - if problem reading image
    • toSVG

      public static void toSVG(File emfFile, File svgOutputFile) throws IOException
      Throws:
      IOException
    • toSVG

      public static void toSVG(InputStream emfInputStream, OutputStream svgOutputFile) throws IOException
      Throws:
      IOException