nidi3 / graphviz-java

Use graphviz with pure java
Apache License 2.0
934 stars 107 forks source link

Don't show image from network #226

Open yuruotong1 opened 2 years ago

yuruotong1 commented 2 years ago

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.

image

The problem may be ImageIO.read return null.

image

Podbrushkin commented 1 year ago

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