我正在尝试生成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();
  }

我的问题是生成的图像为空,我看不到为什么。有什么提示吗?

最佳答案

我认为这取决于您如何创建SVG文档。您将svgGenerator用于什么(我假设是SVGGraphics2D)?

TranscoderInput transcoderInput = new TranscoderInput(svgGenerator.getDOMFactory());

如果您已使用document构建了SVG文档,则应将其传递给TranscoderInput构造函数。

This page具有将SVG DOM光栅化为JPEG的示例。

07-24 09:34