Can not work converter WMF to SVG with Batik

158 Views Asked by At

I have to convert WMF image to SVG image.

I used Batik and got this code but it is not worked. After running the code, a SVG image file is created but it is totally empty file. I have no idea why. Help me please.

public void converter(String a) throws IOException, TranscoderException
{
    String wmfPath="D:\\locales\\sample.wmf";
    FileOutputStream awmfPath=new FileOutputStream("D:upload\\a6.wmf");
    File wmf=new File(wmfPath);
    FileInputStream wmfStream=new FileInputStream(wmf);
    ByteArrayOutputStream imageOut=new ByteArrayOutputStream();
    byte[]buffer=new byte[1024*1024];
    int noOfByteRead=0;

    while((noOfByteRead = wmfStream.read()) != -1)
    {
            imageOut.write(noOfByteRead);
            awmfPath.write(noOfByteRead);
    }

    imageOut.flush();
    awmfPath.flush();

    WMFTranscoder transcoder = new WMFTranscoder();
    TranscodingHints hints=new TranscodingHints();
    hints.put(WMFTranscoder.KEY_HEIGHT,2000f);
    hints.put(WMFTranscoder.KEY_WIDTH,2000f);
    transcoder.setTranscodingHints(hints);

    TranscoderInput input = new TranscoderInput(new ByteArrayInputStream(imageOut.toByteArray()));
    ByteArrayOutputStream svg = new ByteArrayOutputStream();
    TranscoderOutput output = new TranscoderOutput(svg);

    transcoder.transcode(input, output);
    String svgFile = StringUtils.replace(wmfPath,"wmf","svg");
    FileOutputStream fileOut = new FileOutputStream(svgFile);
    fileOut.write(svg.toByteArray());

    fileOut.flush();
}
0

There are 0 best solutions below