1

我正在尝试使用 batik 中的 PNGEncoder 类将 svg 文件转换为 png 格式。我的代码几乎来自 apache 网站上给出的示例。

public void writePng(String pngPath) throws Exception{
        String parentPath=FileUtils.getParentPath(pngPath);
        FileUtils.mkdirs(parentPath);
    PNGTranscoder t = new PNGTranscoder();
    t.addTranscodingHint(PNGTranscoder.KEY_EXECUTE_ONLOAD,new Boolean(true));

    FileInputStream iStream=new FileInputStream(svgPath);
    TranscoderInput input = new TranscoderInput(iStream);

    OutputStream ostream = new FileOutputStream(pngPath);
    TranscoderOutput output = new TranscoderOutput(ostream);

    t.transcode(input, output);

    ostream.flush();
    ostream.close();        
    }

下面是带有嵌入 javascript 的输入 svg 的片段

<?xml version="1.0" encoding="UTF-8"?>
<svg contentScriptType="text/ecmascript" height="600" version="1.2" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <defs/>
    <script type="text/ecmascript" xlink:href="file:/D:/dev/svn/deathstar/xfltoalsxml/src/js/helper_functions.js"/>
    <script type="text/ecmascript" xlink:href="file:/D:/dev/svn/deathstar/xfltoalsxml/src/js/textFlow.js"/>
            <text id="defid_text_1" transform="matrix(1 0 0 1 269.9 57)"/>
            <script type="text/ecmascript"><![CDATA[var textNode = document.getElementById('defid_text_1');
textNode.setAttributeNS(null,'x',0);
textNode.setAttributeNS(null,'y',0);
textNode.setAttributeNS(null,'font-size',18);
textNode.setAttributeNS(null,'font-family','ArialMT');
document.documentElement.appendChild(textNode);
 textFlow('testdata abcd ',textNode,514.1,0,20,false);
]]></script>
</svg>

每当我尝试运行 writePng 函数时,都会出现异常

ava.lang.Exception: Unknown language: text/ecmascript
    at org.apache.batik.bridge.BridgeContext.getInterpreter(BridgeContext.java:575)
    at org.apache.batik.bridge.BaseScriptingEnvironment.getInterpreter(BaseScriptingEnvironment.java:289)
    at org.apache.batik.bridge.BaseScriptingEnvironment.loadScripts(BaseScriptingEnvironment.java:404)
    at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(SVGAbstractTranscoder.java:214)
    at org.apache.batik.transcoder.image.ImageTranscoder.transcode(ImageTranscoder.java:92)
    at org.apache.batik.transcoder.XMLAbstractTranscoder.transcode(XMLAbstractTranscoder.java:142)
    at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(SVGAbstractTranscoder.java:156)
    at com.amered.xfltojs.app.FrameToSvg.writePng(FrameToSvg.java:156)
    at com.amered.xfltojs.app.DocData.generateImageData(DocData.java:172)

使用 squiggle 时文件正确显示。

我已经检查了我能想到的所有地方,但找不到任何解释为什么会发生这种情况。希望有人有一些建议。

4

1 回答 1

0

我正在与同样的例外作斗争。出于某种原因,这对我有用:

代替

TranscoderInput input = new TranscoderInput(new FileReader("myfile.svg"));

我用

String file = new File("myfile.svg").toURI().toString();
TranscoderInput input = new TranscoderInput(file);
于 2013-08-16T17:00:44.293 回答