【发布时间】:2013-05-30 14:22:56
【问题描述】:
我根据对旧 VB6 代码执行的一些静态代码分析生成图表。
问题是字体太小,无法打印,即使在我们的 A3 打印机上也是如此。
我已将字体大小设置为大,但似乎没有任何区别。
这是原来的 DOT:
这是通过 unflatten -l 20 运行的 DOT:
生成的命令就是:
dot -Tpng -o"输出" -Kdot"输入"
但字体总是太小,无法在 A3 上阅读。
这是图表设置:
This makes the arrows merge
concentrate=true,
Laser printer resolution
dpi=600,
It's the dot language
layout=dot,
Doesn't seem to do much
overlap=true,
The ratio of A3 paper
ratio=1.4142,
The size of A3 paper in inches
size="11.69,16.53"
如果我去掉比例,线条更短,文字看起来更大,但图表不是 A3 形状。
没有 DPI 或大小,dot.exe 就会崩溃。
为什么不让字体变大?
为什么 unflatten 不按应有的方式错开节点?
为什么即使我已经说明了dpi和尺寸,它也会创建一个没有比率的daft ratio?
【问题讨论】:
标签: graphviz