我正在尝试生成SVG图像,然后使用Apache Batik将其转码为PNG。但是,我最终得到一张空图像,我看不出原因。
我使用SVGDomImplementation中的Document作为转码的基础(避免将SVG写入磁盘并再次加载)。这是一个例子:
DOMImplementation domImpl = SVGDOMImplementation.getDOMImplementation();
String namespace = SVGDOMImplementation.SVG_NAMESPACE_URI;
Document document = domImpl.createDocument(namespace, "svg", null);
//stuff that builds SVG (and works)
TranscoderInput transcoderInput = new TranscoderInput(svgGenerator.getDOMFactory());
PNGTranscoder transcoder = new PNGTranscoder();
transcoder.addTranscodingHint(PNGTranscoder.KEY_WIDTH, new Float(svgWidth));
transcoder.addTranscodingHint(PNGTranscoder.KEY_HEIGHT, new Float(svgHeight));
try {
File temp = File.createTempFile(key, ".png");
FileOutputStream outputstream = new FileOutputStream(temp);
TranscoderOutput output = new TranscoderOutput(outputstream);
transcoder.transcode(transcoderInput, output);
outputstream.flush();
outputstream.close();
name = temp.getName();
} catch (IOException ioex) {
ioex.printStackTrace();
} catch (TranscoderException trex) {
trex.printStackTrace();
}
我的问题是生成的图像是空的,我看不清楚原因。任何提示?
答案 0 :(得分:1)
我认为这取决于您是如何创建SVG文档的。您使用svgGenerator
的是什么(我假设是SVGGraphics2D
)?
TranscoderInput transcoderInput = new TranscoderInput(svgGenerator.getDOMFactory());
如果您已在document
中构建了SVG文档,则应将其传递给TranscoderInput
构造函数。
This page有一个将SVG DOM栅格化为JPEG的示例。