graphviz-java
graphviz-java copied to clipboard
Don't show image from network
I use this:
guru.nidi.graphviz.model.Node sourceNode = node(Label.html("<table border='0'><tr><td><img src='https://iconsapi.com/5ee26402e4b0b788a932dab6.svg'/></td></tr></table>"));
but it's not work.

The problem may be ImageIO.read return null.

Try to add Graphviz.useEngine(new GraphvizV8Engine(), new GraphvizJdkEngine());. Whitout this line it didn't draw even local images for me.