本文整理汇总了Python中pydot.graph_from_dot_file方法的典型用法代码示例。如果您正苦于以下问题:Python pydot.graph_from_dot_file方法的具体用法?Python pydot.graph_from_dot_file怎么用?Python pydot.graph_from_dot_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pydot
的用法示例。
在下文中一共展示了pydot.graph_from_dot_file方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _render_with_pydot
# 需要导入模块: import pydot [as 别名]
# 或者: from pydot import graph_from_dot_file [as 别名]
def _render_with_pydot(self, filename, encoding):
c = pydot.graph_from_dot_file(filename, encoding=encoding)
sha = ''
for g in c:
jpe_data = g.create(prog=TEST_PROGRAM, format='jpe', encoding=encoding)
sha += sha256(jpe_data).hexdigest()
return sha
示例2: convertDotToPDF
# 需要导入模块: import pydot [as 别名]
# 或者: from pydot import graph_from_dot_file [as 别名]
def convertDotToPDF(self, dot_string, name):
"""Writes the dot string to a .dot file than creates
a pdf from the dot file"""
dot = name + '.dot'
dot = os.path.join(self.cfg_mgr.files, dot)
dot_output = open(dot, 'w')
dot_output.write(str(dot_string))
dot_output.close()
png = os.path.join(self.cfg_mgr.files, name + '.pdf')
# Write out the pdf file - note that there are many other options
graph = pydot.graph_from_dot_file(dot)
graph.write(png, format='pdf')