Graphviz: How to go from .dot to a graph?
问题 I can\'t seem to figure this out. I have a .dot file, which is valid according to the syntax. How do I use graphviz to convert this into an image? (note that I\'m on Windows, not linux) 回答1: type: dot -Tps filename.dot -o outfile.ps If you want to use the dot renderer. There are alternatives like neato and twopi. If graphiz isn't in your path, figure out where it is installed and run it from there. You can change the output format by varying the extension of the filename specified with -o .