Converting dot to png in python

匿名 (未验证) 提交于 2019-12-03 02:06:01

问题:

I have a dot file generated from my code and want to render it in my output. For this i have seen on the net that the command is something like this on cmd

dot -Tpng InputFile.dot -o OutputFile.png  for Graphviz 

But my problem is that I want to use this inbuilt in my python program.

How can i do so ??

I looked at pydot but can't seem to find an answer in there.....

回答1:

pydot needs the GraphViz binaries to be installed anyway, so if you've already generated your dot file you might as well just invoke dot directly yourself. For example:

from subprocess import check_call check_call(['dot','-Tpng','InputFile.dot','-o','OutputFile.png']) 


回答2:

Load the file with pydot.graph_from_dot_file to get a pydot.Dot class instance. Then write it to a PNG file with the write_png method.

import pydot  (graph,) = pydot.graph_from_dot_file('somefile.dot') graph.write_png('somefile.png') 


回答3:

You can use pygraphviz. Once you have a graph loaded, you can do

graph.draw('file.png') 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!