Click here to see the SAS code. 
Click here to see the example.


Sometimes it is useful to annotate an image on a graph,
so that the user can glance at the graph and immediately
know what it is about (without having to read the text).



data img_anno;
length function color $8 text $100;
xsys='3'; ysys='3'; hsys='3'; when='A';
function='move'; x=2; y=45; output;
function='image'; x=x+22; y=y+26; imgpath='loggerhead.jpg'; style='fit'; output;
run;


Back to Samples Index