Last active
December 20, 2015 17:08
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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