<p>Type</p>
<pre><code class="lang-auto">dot -Tps filename.dot -o outfile.ps
</code></pre>
<p>if you want to use the <a href="https://graphviz.org/docs/layouts/dot/">dot</a> renderer. Il y a alternatives like <a href="https://graphviz.org/docs/layouts/neato/">neato</a> and <a href="https://graphviz.org/docs/layouts/twopi/">twopi</a>. If Graphviz isn’t in your path, figure out where it is installed and run it from there.</p>
<p>Vous pouvez change the <a href="https://graphviz.org/docs/outputs/">output format</a> by varying the value after <code>-T</code> and choosing an appropriate filename extension after <code>-o</code>.</p>
<p>If you’re using Windows, check out the installed tool called <a href="https://graphviz.org/docs/cli/gvedit/">GVEdit</a>, it makes the whole process slightly easier.</p>
<p>Go look at the Graphviz site for more details on how to use the tools: <a href="https://www.graphviz.org/documentation/">https://www.graphviz.org/documentation/</a></p>
<p>See section “Command Line Options” for output formatting for the dot command, for instance: <a href="https://www.graphviz.org/pdf/dotguide.pdf">https://www.graphviz.org/pdf/dotguide.pdf</a></p>