Question

Does anyone know how to export JGraphx as an image in any format? If not, then does anyone know any other java library that will let me create simple diagrams and then save it as an image?

Was it helpful?

Solution

This should do it for PNG format:

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

Where

  • graph is your mxGraph object. (Note mxCellRenderer is a reference to a class not a variable, so mxCellRenderer.createBufferedImage is a static method call).
  • "PNG" is the format, and can be JPEG, PNG, GIF, BMP and WBMP out of the box. See here for more details.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top