%let name=picture; filename odsout '.'; data a; midpoint='A'; value=16.5; output; midpoint='B'; value=15; output; midpoint='C'; value=13; output; midpoint='D'; value=10; output; run; GOPTIONS DEVICE=gif xpixels=300 ypixels=258 cback=cornsilk; goptions htitle=10pct htext=6.5pct ftitle="arial/bold" ftext="arial"; ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" style=minimal; axis1 label=none order=(0 to 20 by 5) minor=none offset=(0,0); axis2 label=none offset=(5,5); symbol1 v=dot h=5 i=join ci=red w=2 c=red; title "SAS 9.1.3 256 Colors"; title2 angle=-90 " "; proc gplot data=a; plot value*midpoint / vaxis=axis1 haxis=axis2 iframe='../v920/camaro.jpg' imagestyle='fit' des="" name="&name" ; run; quit; ODS HTML CLOSE; ODS LISTING;