graphviz-java icon indicating copy to clipboard operation
graphviz-java copied to clipboard

Don't show image from network

Open yuruotong1 opened this issue 4 years ago • 1 comments

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

yuruotong1 avatar Feb 09 '22 00:02 yuruotong1

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

Podbrushkin avatar Aug 02 '23 13:08 Podbrushkin