<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SGPLOT &amp;gt; PNG &amp;gt; Proc report PREIMAGE &amp;gt; Ods PDF    how to avoid rescaling? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244334#M15099</link>
    <description>&lt;P&gt;Hi Xia,&lt;/P&gt;
&lt;P&gt;Thanks for replying! &amp;nbsp;I dont think my issue requires a macro. &amp;nbsp;What I mean is that the file created after I do a "reset=all" is named &amp;nbsp;&lt;/P&gt;
&lt;P&gt;"name1.png" &amp;nbsp;instead of "name.png".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's an unrelated issue, but I was wondering if you might know what is going on.&lt;/P&gt;
&lt;P&gt;cheers!&lt;/P&gt;</description>
    <pubDate>Tue, 19 Jan 2016 02:00:00 GMT</pubDate>
    <dc:creator>morglum</dc:creator>
    <dc:date>2016-01-19T02:00:00Z</dc:date>
    <item>
      <title>SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/243921#M15078</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;I'm generating png's using Proc SGPLOT insert them inside a proc report through "preimage". &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, the image quality is reduced inside the produced PDF. &amp;nbsp;How can I avoid this loss of quality?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached, the SAS program used to generate the three PNG and the report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12195i64912D556D3AC50B/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Graph2.png" title="Graph2.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12196i12A5039C2CBE3B4E/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Graph3.png" title="Graph3.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12197i7290D5BC46E5EFDA/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Graph1.png" title="Graph1.png" /&gt;</description>
      <pubDate>Fri, 15 Jan 2016 20:59:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/243921#M15078</guid>
      <dc:creator>morglum</dc:creator>
      <dc:date>2016-01-15T20:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/243975#M15082</link>
      <description>&lt;P&gt;Justing the code inline to make it easier for others to help debug.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ODS HTML GPATH = 'c:\temp\'  style=styles.custom ; 

title;
footnote;

data temp;
do x =1 to 20;
	y1= 2*(x+ranuni(1));
	y2= 2*(x+ranuni(2))-x;
	y3= 2*(x+ranuni(3))-x;

output;
end;
run;
ods graphics on / reset=all width=2in height=1in imagename="Graph1";
proc sgplot data=temp noautolegend  ;
series x=x y=y1 /lineattrs=(thickness=2.5)    ;
xaxis label="time"  values=(1 to 20 by 1) ;
yaxis label="($)" min=0  ;
title "Graph 1";

run;

ods graphics on / reset=all width=2in height=1in imagename="Graph2";
proc sgplot data=temp noautolegend  ;
series x=x y=y2 /lineattrs=(thickness=2.5)    ;
xaxis label="time"  values=(1 to 20 by 1) ;
yaxis label="($)" min=0  ;
title "Graph 2";

run;

ods graphics on / reset=all width=2in height=1in imagename="Graph3";
proc sgplot data=temp noautolegend  ;
series x=x y=y3 /lineattrs=(thickness=2.5)    ;
xaxis label="time"  values=(1 to 20 by 1) ;
yaxis label="($)" min=0  ;
title "Graph 3";

run;

data images;
image1="c:\temp\graph1.png";
image2="c:\temp\graph2.png";
image3="c:\temp\graph3.png";
run;

ods pdf file= "c:\temp\report.pdf";
title "3 graphs";
proc report data=images nofs ; 
 column image1 image2 image3;
 define image1 / "" display style={cellwidth=2.5in};
 define image2 / "" display style={cellwidth=2.5in};
 define image3 / "" display style={cellwidth=2.5in};
 compute image1;
 call define(_col_,"Style","Style=[PREimage='"!!image1!!"']"); 
 image1=""; *&amp;lt;&amp;lt;&amp;lt; Avoid image location being printed; 
 endcomp;
  compute image2;
 call define(_col_,"Style","Style=[PREimage='"!!image2!!"']"); 
 image2=""; *&amp;lt;&amp;lt;&amp;lt; Avoid image location being printed; 
 endcomp;

  compute image3;
 call define(_col_,"Style","Style=[PREimage='"!!image3!!"']"); 
 image3=""; *&amp;lt;&amp;lt;&amp;lt; Avoid image location being printed; 
 endcomp;

run; 

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Jan 2016 03:22:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/243975#M15082</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-16T03:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244125#M15089</link>
      <description>&lt;P&gt;Make dpi of picture and PDF bigger .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ODS listing GPATH = '/folders/myfolders/' image_dpi=1000;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;title;&lt;BR /&gt;footnote;&lt;/P&gt;
&lt;P&gt;data temp;&lt;BR /&gt;do x =1 to 20;&lt;BR /&gt; y1= 2*(x+ranuni(1));&lt;BR /&gt; y2= 2*(x+ranuni(2))-x;&lt;BR /&gt; y3= 2*(x+ranuni(3))-x;&lt;/P&gt;
&lt;P&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;ods graphics on / reset=all width=2in height=1in imagename="Graph1";&lt;BR /&gt;proc sgplot data=temp noautolegend ;&lt;BR /&gt;series x=x y=y1 /lineattrs=(thickness=2.5) ;&lt;BR /&gt;xaxis label="time" values=(1 to 20 by 1) ;&lt;BR /&gt;yaxis label="($)" min=0 ;&lt;BR /&gt;title "Graph 1";&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;ods graphics on / reset=all width=2in height=1in imagename="Graph2";&lt;BR /&gt;proc sgplot data=temp noautolegend ;&lt;BR /&gt;series x=x y=y2 /lineattrs=(thickness=2.5) ;&lt;BR /&gt;xaxis label="time" values=(1 to 20 by 1) ;&lt;BR /&gt;yaxis label="($)" min=0 ;&lt;BR /&gt;title "Graph 2";&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;ods graphics on / reset=all width=2in height=1in imagename="Graph3";&lt;BR /&gt;proc sgplot data=temp noautolegend ;&lt;BR /&gt;series x=x y=y3 /lineattrs=(thickness=2.5) ;&lt;BR /&gt;xaxis label="time" values=(1 to 20 by 1) ;&lt;BR /&gt;yaxis label="($)" min=0 ;&lt;BR /&gt;title "Graph 3";&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;data images;&lt;BR /&gt;image1="/folders/myfolders/graph1.png";&lt;BR /&gt;image2="/folders/myfolders/graph2.png";&lt;BR /&gt;image3="/folders/myfolders/graph3.png";&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ods pdf file= "/folders/myfolders/report.pdf" dpi=1000;&lt;/STRONG&gt;&lt;BR /&gt;title "3 graphs";&lt;BR /&gt;proc report data=images nofs nowd ; &lt;BR /&gt; column image1 image2 image3;&lt;BR /&gt; define image1 / "" display style={cellwidth=2.5in};&lt;BR /&gt; define image2 / "" display style={cellwidth=2.5in};&lt;BR /&gt; define image3 / "" display style={cellwidth=2.5in};&lt;BR /&gt; compute image1;&lt;BR /&gt; call define(_col_,"Style","Style=[PREimage='"!!image1!!"']"); &lt;BR /&gt; image1=""; *&amp;lt;&amp;lt;&amp;lt; Avoid image location being printed; &lt;BR /&gt; endcomp;&lt;BR /&gt; compute image2;&lt;BR /&gt; call define(_col_,"Style","Style=[PREimage='"!!image2!!"']"); &lt;BR /&gt; image2=""; *&amp;lt;&amp;lt;&amp;lt; Avoid image location being printed; &lt;BR /&gt; endcomp;&lt;/P&gt;
&lt;P&gt;compute image3;&lt;BR /&gt; call define(_col_,"Style","Style=[PREimage='"!!image3!!"']"); &lt;BR /&gt; image3=""; *&amp;lt;&amp;lt;&amp;lt; Avoid image location being printed; &lt;BR /&gt; endcomp;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;ods pdf close;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 02:37:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244125#M15089</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-01-18T02:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244241#M15097</link>
      <description>&lt;P&gt;Hi Xia,&lt;/P&gt;
&lt;P&gt;Thanks for replying! &amp;nbsp;It worked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For some reason, the naming &amp;nbsp;scheme changed over the weekend..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I now get graph11.png&amp;nbsp;graph21.png &amp;nbsp;and graph31.png.&lt;/P&gt;
&lt;P&gt;(The index starts at "1" instead of "no number") &amp;nbsp;any idea what might be going on?&lt;/P&gt;
&lt;P&gt;thanks!&lt;/P&gt;
&lt;P&gt;Simon&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 15:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244241#M15097</guid>
      <dc:creator>morglum</dc:creator>
      <dc:date>2016-01-18T15:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244326#M15098</link>
      <description>&lt;P&gt;I would make a macro to make it happen if I were you . decide the naming rule of graph and assign it to a macro variable.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 00:58:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244326#M15098</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-01-19T00:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244334#M15099</link>
      <description>&lt;P&gt;Hi Xia,&lt;/P&gt;
&lt;P&gt;Thanks for replying! &amp;nbsp;I dont think my issue requires a macro. &amp;nbsp;What I mean is that the file created after I do a "reset=all" is named &amp;nbsp;&lt;/P&gt;
&lt;P&gt;"name1.png" &amp;nbsp;instead of "name.png".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's an unrelated issue, but I was wondering if you might know what is going on.&lt;/P&gt;
&lt;P&gt;cheers!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 02:00:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244334#M15099</guid>
      <dc:creator>morglum</dc:creator>
      <dc:date>2016-01-19T02:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244335#M15100</link>
      <description>&lt;P&gt;No. I have no any clue about it . SAS has itself naming rule .&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 02:08:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244335#M15100</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-01-19T02:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244337#M15101</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#p0f8elds7dc3dnn1ahm2cep3n0ce.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#p0f8elds7dc3dnn1ahm2cep3n0ce.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Most likely it's starting with 1 because the other file already exists?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: you can specify where the index starts in the latest SAS releases, though I think a similar option existed in SAS 9.2&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#p0kroq43yu0lspn16hk1u4c65lti.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#p0kroq43yu0lspn16hk1u4c65lti.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 02:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244337#M15101</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-19T02:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244345#M15102</link>
      <description>&lt;P&gt;Nope, i deleted everything. In the example code above from Xia, i get the&lt;BR /&gt;wrong file numbers.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Nov 2016 07:23:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244345#M15102</guid>
      <dc:creator>morglum</dc:creator>
      <dc:date>2016-11-25T07:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244353#M15103</link>
      <description>&lt;P&gt;Did you start a fresh new SAS session to run the code ?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 05:09:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244353#M15103</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-01-19T05:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244369#M15104</link>
      <description>&lt;P&gt;Why not use ODS LAYOUT, that would not need to consider about file name ?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
do x =1 to 20;
	y1= 2*(x+ranuni(1));
	y2= 2*(x+ranuni(2))-x;
	y3= 2*(x+ranuni(3))-x;

output;
end;
run;
ods pdf file='/folders/myfolders/xx.pdf' ;
ods layout gridded advance=table COLUMNS=3;
ods graphics on / reset=all width=2in height=1in imagename="Graph1";
proc sgplot data=temp noautolegend  ;
series x=x y=y1 /lineattrs=(thickness=2.5)    ;
xaxis label="time"  values=(1 to 20 by 1) ;
yaxis label="($)" min=0  ;
title "Graph 1";

run;

ods graphics on / reset=all width=2in height=1in imagename="Graph2";
proc sgplot data=temp noautolegend  ;
series x=x y=y2 /lineattrs=(thickness=2.5)    ;
xaxis label="time"  values=(1 to 20 by 1) ;
yaxis label="($)" min=0  ;
title "Graph 2";

run;

ods graphics on / reset=all width=2in height=1in imagename="Graph3";
proc sgplot data=temp noautolegend  ;
series x=x y=y3 /lineattrs=(thickness=2.5)    ;
xaxis label="time"  values=(1 to 20 by 1) ;
yaxis label="($)" min=0  ;
title "Graph 3";

run;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Jan 2016 08:09:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244369#M15104</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-01-19T08:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244416#M15106</link>
      <description>&lt;P&gt;Thanks Xia!&lt;/P&gt;
&lt;P&gt;That's a good tip and I didnt know about it, but I need to know the exact filename of the png to attach it to an email generated using "filename email"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cheers!&lt;/P&gt;
&lt;P&gt;S.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 13:05:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244416#M15106</guid>
      <dc:creator>morglum</dc:creator>
      <dc:date>2016-01-19T13:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT &gt; PNG &gt; Proc report PREIMAGE &gt; Ods PDF    how to avoid rescaling?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244459#M15108</link>
      <description>Use the index and imagename option together so you'll know where it will start.</description>
      <pubDate>Tue, 19 Jan 2016 15:41:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SGPLOT-gt-PNG-gt-Proc-report-PREIMAGE-gt-Ods-PDF-how-to-avoid/m-p/244459#M15108</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-19T15:41:15Z</dc:date>
    </item>
  </channel>
</rss>

