Skip to content

Instantly share code, notes, and snippets.

@rpietro
Last active December 20, 2015 17:08
Show Gist options
  • Save rpietro/6165991 to your computer and use it in GitHub Desktop.
Save rpietro/6165991 to your computer and use it in GitHub Desktop.
script to insert an image file into a graphviz file (dot or neato)
digraph dot_image {
name1 [shape=box, style=filled, fillcolor=white, color=blue, label=<<TABLE border="0" cellborder="0"><TR><TD width="100" height="100" fixedsize="true"><IMG SRC="figure.jpg" scale="true"/></TD><td><font point-size="12">name1</font></td></TR></TABLE>>];
"name1" -> "name2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment