gpt4 book ai didi

jgraphx - java JGraphx 保存为图像

转载 作者:行者123 更新时间:2023-12-02 17:47:13 30 4
gpt4 key购买 nike

有谁知道如何将 JGraphx 导出为任何格式的图像?如果没有,那么有人知道任何其他 java 库可以让我创建简单的图表,然后将其保存为图像吗?

最佳答案

这应该适用于 PNG 格式:

BufferedImage image = mxCellRenderer.createBufferedImage(graph, null, 1, Color.WHITE, true, null);
ImageIO.write(image, "PNG", new File("C:\\Temp\\graph.png"));

哪里

  • graph 是您的 mxGraph 对象。 (注意 mxCellRenderer 是对类的引用,而不是变量,因此 mxCellRenderer.createBufferedImage 是静态方法调用)。
  • "PNG" 是格式,可以是开箱即用的 JPEG、PNG、GIF、BMP 和 WBMP。请参阅here了解更多详情。

关于jgraphx - java JGraphx 保存为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18432160/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com