My Perl脚本使用模块GraphViz2
生成一个非常大的图形use GraphViz2;
my($graph) = GraphViz2 -> new
(
edge => {color => 'grey'},
global => {directed => 1},
node => {shape => 'oval'},
);
add_very_many_nodes_and_edges(); # 600 nodes 6.5K edges
我想在将其输入graphviz之前获得点输入。根据GraphViz2我需要在获得图形之前运行图形>运行> dot_input;
这个过程需要太长时间..在实际运行环境之前还有其他方法可以获得点输入吗?
请记住,通过使用Graph :: Easy模块时可以实现这一点 Graph-> as_graphviz_file()方法。