我已经使用带有javascript
的mxGraph实现了一个图编辑器(与它们提供的示例中的相同),我可以得到一个XML,这里我举一个例子:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mxGraphModel connect="1" fold="1" grid="1" gridSize="10" guides="1" page="0" pageHeight="1169" pageScale="1" pageWidth="826" tooltips="1">
<root>
<mxCell id="0"/>
<mxCell id="1" parent="0"/>
<mxCell id="2" parent="1" style="whiteSpace=wrap" value="" vertex="1">
<mxGeometry as="geometry" height="60" width="120" x="80" y="70"/>
</mxCell>
<mxCell id="3" parent="1" style="whiteSpace=wrap" value="" vertex="1">
<mxGeometry as="geometry" height="60" width="120" x="280" y="70"/>
</mxCell>
<mxCell edge="1" id="4" parent="1" source="2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;" target="3">
<mxGeometry as="geometry" relative="1"/>
</mxCell>
</root>
</mxGraphModel>
我从javascript编辑器生成这个xml并将其发送到带有ajax的java类。
基于我在java类上获得的xml,我找不到保存图像svg(或任何其他类型的图像)的方法。
我在互联网上找到的所有示例都显示了如何基于直接在java上创建的mxgraph导出图像,但不是如何从xml中获取它
答案 0 :(得分:2)
您可以使用mxXmlUtils.parseXml api。以下是示例代码段
Document doc = mxXmlUtils.parseXml(erXmlString);
mxGraph graph = new mxGraph();
mxCodec codec = new mxCodec(doc);
codec.decode(doc.getDocumentElement(), graph.getModel());
mxGraphComponent graphComponent = new mxGraphComponent(graph);
BufferedImage image = mxCellRenderer.createBufferedImage(graphComponent.getGraph(), null, 1, Color.WHITE, graphComponent.isAntiAlias(), null, graphComponent.getCanvas());
mxPngEncodeParam param = mxPngEncodeParam.getDefaultEncodeParam(image);
param.setCompressedText(new String[] { "mxGraphModel", erXmlString });
FileOutputStream outputStream = new FileOutputStream(new File(filename));
mxPngImageEncoder encoder = new mxPngImageEncoder(outputStream, param);
if (image != null) {
encoder.encode(image);
return image;
}
outputStream.close();
return null;
}