graphviz* ( graph path format -- )
Rendering Graphviz output

Prev:graphviz ( graph path format layout -- )
Next:preview ( graph -- )


Vocabulary
graphviz.render

Inputs
grapha graph
patha pathname string
formata string


Outputs
None

Word description
Invokes the graphviz word using the value of default-layout as the layout engine. That is, the following two lines are equivalent:
graph path format default-layout get-global graphviz graph path format graphviz*


Examples
To render a graph G when you don't particularly care about the layout engine but want to save the output to a PNG file, you could write
G "foo" "png" graphviz*

(assuming that default-layout and PNG are supported by your Graphviz installation). This will save the output to the file foo.png.

See also
graphviz

Definition