Hello everyone, I have graphviz version 6.0.1 installed and I have problems with the images; When I add an image it does not appear in the graph and the CLI says the following error:
Warning: No such file or directory while opening /img.svg
Warning: No or improper image=“/img.svg” for node “ta11”
Could someone help me with this?
My source code looks so:
digraph G {
bgcolor=white;
center=true;
start [shape=ellipse,label="0. Start" , color="#57a006", fillcolor="#edffbd"];
ta1 [shape=none, image="img1.png" tooltip="Test" ]
ta2 [shape=box, style="filled, rounded",label=<<TABLE><TR><TD><IMG SRC='img1.png' /></TD></TR> </TABLE>> ]
start -> ta1
}
Thank you