LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (July 2002, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 22 Jul 2002 13:11:18 +0200
Reply-To:     Annette <anne5432@UNI.DE>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Annette <anne5432@UNI.DE>
Subject:      tiny dots in hi res JPEG graphic
Comments: To: SASL <SAS-L@UGA.CC.UGA.EDU>
Content-Type: text/plain; charset="iso-8859-1"

I wrote a program that produces a fine GPLOT graphic in JPEG format. However, if I look closely there are some tiny "dots" in selected places, especially around the texts (e.g. title, legend, footnote), the border, and the grid. Especially in print this looks quite irksome. Any idea how could I get rid of these "dots"? Thank you very much! Annette

filename GRAPHOUT 'C:\...............\Sample.jpg'; /* Set the SAS/Graph options */ goptions reset=all device=jpeg gsfname=GRAPHOUT gsfmode=replace devmap=WINANSI keymap=WINANSI ftext=SWISSB xmax=15cm ymax=10cm xpixels=540 ypixels=360;

goptions htext=0.7 cback=white border ; footnote h=0.7 j=r'Datenbase' ; symbol1 c=red i=spline line=1 v=plus h=1 ; symbol2 c=black i=spline line=1 v=diamond h=1 ; symbol3 c=blue i=spline line=1 ci=blue v=star cv=black h=0.6 ; axis1 length =65 pct order= (0 to 1.5 by 0.1) label=(h=0.8 ' Prozent' rotate=0 angle=0 ) ; axis2 length =80 pct /*offset=(15 pct)*/ order= (1950 to 2010 by 10) ;

legend origin=(15 pct, 58 pct) cframe=white cborder=black mode=protect across=1 label=none value=(f=swissb h=0.7 frame fwidth=1.5 cshadow=grey ; title1 ' ' ; title2 'Germany' ; * footnote j=r'Paragraph 47' ; proc gplot data = OW2240 ; label PROAMHW='Percent'; plot PROAMHW*YEAR PROAMJU*YEAR PROAMKI*YEAR / overlay legend=legend1 vaxis=axis1 haxis=axis2 href=1983 vref=0.3 to 1.2 by 0.3 haxis=1950 to 2010 grid cframe=CXBFBFBF ; run ; quit; title1 ' ' ; title2 ' ' ;


Back to: Top of message | Previous page | Main SAS-L page