使用png或svg图像作为graphviz节点

时间:2013-03-19 14:36:59

标签: image macos svg png graphviz

我尝试在graphviz中使用自定义图片节点(节点d):

digraph foo {
    rankdir=LR;
    node [shape=record];
    a [label="{ <data> 12 | <ref>  }", width=1.2]
    b [label="{ <data> 99 | <ref>  }"];
    c [label="{ <data> 37 | <ref>  }"];
    d [image="X_Shape_Pillar_Yellow.png"];
    a:ref:c -> b:data [arrowhead=vee, arrowtail=dot, dir=both, tailclip=false, arrowsize=1.2];
    b:ref:c -> c:data [arrowhead=vee, arrowtail=dot, dir=both, tailclip=false];
    c:ref:c -> d      [arrowhead=vee, arrowtail=dot, dir=both, tailclip=false];
}

不幸的是,图片没有出现:

enter image description here

我使用以下方法编译了点文件:

dot -v -Tpng list.dot -o list.png

我的代码,包括png图片,is stored in github

如何在我的自定义图片中使用替换节点d

1 个答案:

答案 0 :(得分:10)

只需为此节点定义其他形状,例如shape=none

d [shape=none, label="", image="X_Shape_Pillar_Yellow.png"];

定义为默认值的record形状不显示图像,而nonebox甚至plaintext则显示。

同时,将标签设置为空可能是个好主意。