用於繪製DOT語言指令碼描述的圖形
--
--
CentOS 安裝
1 |
yum install graphviz |
--
缺少中文
CentOS 7
1 |
yum groupinstall "fonts" |
--
一個簡單範例
a.dot
1 2 3 4 |
graph demo2{ a -- b -- c; c -- a; } |
執行 .dot 並產生 PNG 圖檔
1 |
dot a.dot -T png -o a.png |
--
內含中文範例
1 2 3 4 5 6 7 8 9 10 11 |
digraph G { node[fontname = "Microsoft JhengHei Bold"]; "王大同" -> parse -> execute; "王大同" -> init; "王大同" -> cleanup; execute -> make_string; execute -> printf init -> make_string; "王大同" -> printf; execute -> compare; } |
--
圖表類型
- graph 為無向圖,使用 -- 連接 node
- digraph 是有層次,使用 -> 連接 node
--
Node 屬性
對所有 Node 定義預設格式
邊界
1 |
node[margin="0.5,0.2"]; |
字型
1 |
node[fontname = "Microsoft JhengHei"] |
--
組織圖
--
554 total views, 1 views today