设置 graph
、node
或 edge
的 fontname
属性为支持中文的字体即可。例如:fontname="Microsoft Yahei"
。贴一小段代码吧:
digraph {
// graph [fontname="Microsoft Yahei"];
node [shape=plaintext, fontname="Microsoft Yahei"];
机器地址; 存储数组的地址连续的内存块; 数组索引;
node [shape=record];
machineAddr [label="{10011101 | 10011110 | 10011111 | 10100000 | 10100001}", color=white];
memoryBlock [label="{ | | | | }"];
arrayIndices [label="{0 | 1 | 2 | 3 | 4}", color=white]
机器地址 -> machineAddr [style=invis];
存储数组的地址连续的内存块 -> memoryBlock;
数组索引 -> arrayIndices [style=invis];
}
效果: