使用以下命令:
dot -Tpng so.dot -o so.png
显示的graphviz代码产生了进一步向下的(650x255)图像。我喜欢输出图像中有3个不同的水平等级,但我更喜欢这三个等级之间的高度差异增加;也许会产生更高的形象。有人可以帮忙吗?
digraph G {
node [shape="circle"];
1 -> { 2; 3; 4 }
2 -> { 5; 6; 7 }
3 -> { 8; 9; 10 }
4 -> { 11; 12; 13 }
}
答案 0 :(得分:2)
尝试
dot -Tpng -Granksep=3.0 so.dot -o so.png
给出了
文档:http://soc.if.usp.br/manual/graphviz/html/info/attrs.html#a:ranksep