Without using HTML, what is an easy way to resize external images used in a GraphViz document? For example, with the following:
somenode [size=1 image="littleperson.png", label=""];
How can I reduce the image? [Preferably without HTML, using HTML if it is most directly or inevitably.]
I'm not very lucky with HTML:
somenode [label=<<IMG SRC="littleperson.png" />>];
Throws an error.
source share