jgraph 之 导出图形

jgraph已经帮我们做好了。例子如下:
/**
* 导出成图片
*
* @param fileName
*/
public void getImager(String fileName) {
try {
FileOutputStream out = new FileOutputStream(fileName);
                        //下面的第一个参数为背景色。第二个参数为图形边框大小
BufferedImage img = graph.getImage(null, 0);
ImageIO.write(img, "png", out);
out.flush();
out.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}

你可能感兴趣的:(jgraph)