Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RGL 支持从图形写入 DOT 文件,是否可以从 DOT 文件创建图形?
(显然我可以自己解析 DOT 文件并创建一个图表,但我想知道这个功能是否已经存在)。
首先,您必须安装 graphviz,它会为您提供“点”命令。然后你可以运行
dot -Tpng graph.dot > output.png
但我发现在安装 dot 后,如果您执行类似的操作,rgl 方法 write_to_graphic_file 会自动写入图像
graph_obj.write_to_graphic_file('png')