<?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: High resolution image+label in Office Document in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195103#M7228</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the answer, appreciated&lt;/P&gt;&lt;P&gt;The problem is that the fonts still look rather fuzzy when the image is inserted into powerpoint or word and viewed on the screen, any suggestion of a solution?&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 08 Aug 2015 21:12:44 GMT</pubDate>
    <dc:creator>ammarhm</dc:creator>
    <dc:date>2015-08-08T21:12:44Z</dc:date>
    <item>
      <title>High resolution image+label in Office Document</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195101#M7226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I apologise in advance if this question is previously asked and answered... I did look around but the answers are somewhat confusing.&lt;/P&gt;&lt;P&gt;It is about doing the simple thing of 1- exporting sgplot in high resolution usable in office documents and 2- keeping the fonts in the labels readable.&lt;/P&gt;&lt;P&gt;Many recommend producing a large size image then shrinking it in the office document to obtain a high resolution image, but the labels become unreadable&lt;/P&gt;&lt;P&gt;Is there any simple straight forward way of doing this? Surely SAS with all its mighty power should have a short cut for this?&lt;/P&gt;&lt;P&gt;I have tried the following, including using the emf or tiff&amp;nbsp; image type:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1"&gt;ODS&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;GRAPHICS&lt;SPAN class="s1"&gt; / &lt;/SPAN&gt;RESET&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;IMAGENAME&lt;SPAN class="s1"&gt; = &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;'Image'&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;IMAGEFMT&lt;SPAN class="s1"&gt; =&lt;/SPAN&gt;emf&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;HEIGHT&lt;SPAN class="s1"&gt; = &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;&lt;STRONG&gt;4&lt;/STRONG&gt;&lt;/SPAN&gt;in&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;WIDTH&lt;SPAN class="s1"&gt; = &lt;STRONG&gt;5i&lt;/STRONG&gt;&lt;/SPAN&gt;n&lt;SPAN class="s1"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;ODS&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;LISTING&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;GPATH&lt;SPAN class="s1"&gt; = &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;'c:\g'&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; ; &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;sgplot&lt;/STRONG&gt;&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;data&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;=p2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;vbar&lt;SPAN class="s1"&gt; ni / &lt;/SPAN&gt;response&lt;SPAN class="s1"&gt;=per &lt;/SPAN&gt;fillattrs&lt;SPAN class="s1"&gt;=(&lt;/SPAN&gt;color&lt;SPAN class="s1"&gt;=deppk);&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;xaxis&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;discreteorder&lt;SPAN class="s1"&gt;=data &lt;/SPAN&gt;label&lt;SPAN class="s1"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;'Impact'&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;labelattrs&lt;SPAN class="s1"&gt;=(&lt;/SPAN&gt;size&lt;SPAN class="s1"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;&lt;STRONG&gt;12&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p3"&gt;&lt;SPAN class="s2"&gt;yaxis&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;label&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;=&lt;/SPAN&gt;'Percent'&lt;SPAN class="s1"&gt; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;labelattrs&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;=(&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;size&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;&lt;STRONG&gt;12&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; );&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;SPAN class="s1"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;But still no success.... any help is greatly appreciated. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Aug 2015 18:37:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195101#M7226</guid>
      <dc:creator>ammarhm</dc:creator>
      <dc:date>2015-08-08T18:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: High resolution image+label in Office Document</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195102#M7227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on Sanjay's book I usually create an image size close to the size I want the actual graph to be, such as a height of 2in and width of 3in, and then I use Proc Template to create a style that has smaller fonts than usual and use ODS Listing to refer to the style and also produce a high resolution image of 300 dpi. Depending on what version you have you may need to use DPI instead of IMAGE_DPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;ODS&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;GRAPHICS&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; / &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;RESET&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;IMAGENAME&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; = &lt;/SPAN&gt;&lt;SPAN class="s2" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt;'Image'&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;IMAGEFMT&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; =png &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;HEIGHT&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; = &lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit;"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;in&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt; = 3&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;i&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;n&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="s1" style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;proc template; &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; define style styles.TLSPlot; &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; parent = Styles.listing; &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; style GraphFonts from GraphFonts / &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphValueFont' = (", ",6pt) &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphLabelFont'=(", ",8pt) &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphDataFont'=(", ",6pt);&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;run;&lt;/P&gt;&lt;P class="p1" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P class="p1" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN class="s1" style="font-family: inherit; line-height: 1.5em; font-weight: inherit; font-style: inherit;"&gt;ods listing &lt;/SPAN&gt;&lt;SPAN style="line-height: 1.5em;"&gt;GPATH&lt;/SPAN&gt;&lt;SPAN class="s1" style="line-height: 1.5em;"&gt; = &lt;/SPAN&gt;&lt;SPAN class="s2" style="line-height: 1.5em;"&gt;'c:\g'&lt;/SPAN&gt;&lt;SPAN class="s1" style="line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit; line-height: 1.5em;"&gt;image_dpi = 300 style = style.TLSPlot;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P class="p1" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;proc&lt;/STRONG&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; &lt;/SPAN&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;sgplot&lt;/STRONG&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; &lt;/SPAN&gt;&lt;SPAN class="s2" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;data&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=p2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; vbar&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; ni / &lt;/SPAN&gt;response&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=per &lt;/SPAN&gt;fillattrs&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=(&lt;/SPAN&gt;color&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=deppk);&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; xaxis&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; &lt;/SPAN&gt;discreteorder&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=data &lt;/SPAN&gt;label&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s3" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;'Impact';&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p3" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN class="s2" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; yaxis&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; &lt;/SPAN&gt;&lt;SPAN class="s2" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;label&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=&lt;/SPAN&gt;'Percent';&lt;/P&gt;&lt;P class="p1" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;run&lt;/STRONG&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Aug 2015 20:42:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195102#M7227</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-08-08T20:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: High resolution image+label in Office Document</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195103#M7228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the answer, appreciated&lt;/P&gt;&lt;P&gt;The problem is that the fonts still look rather fuzzy when the image is inserted into powerpoint or word and viewed on the screen, any suggestion of a solution?&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Aug 2015 21:12:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195103#M7228</guid>
      <dc:creator>ammarhm</dc:creator>
      <dc:date>2015-08-08T21:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: High resolution image+label in Office Document</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195104#M7229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's fine. Can you attach an example of the image please? I thought that would have helped with the fonts. I assume you are increasing the size of the image after inserting it into Word?&lt;/P&gt;&lt;P&gt;Best regards &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Aug 2015 21:52:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195104#M7229</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-08-08T21:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: High resolution image+label in Office Document</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195105#M7230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set the graph size (width and height) to the size it will be in the document, and set a high dpi, like 300 and create a PNG output.&amp;nbsp; If the final graph is to occupy 3.5" in the document, use something like the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods listing image_dpi=300;&lt;/P&gt;&lt;P&gt;ods graphics / reset width=3.5in height=2in;&lt;/P&gt;&lt;P class="p1" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;proc&lt;/STRONG&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; &lt;/SPAN&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;sgplot&lt;/STRONG&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; &lt;/SPAN&gt;&lt;SPAN class="s2" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;data&lt;/SPAN&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;=sashelp.cars;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; scatter x=horsepower y=mpg_city;&lt;/P&gt;&lt;P class="p1" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;run&lt;/STRONG&gt;&lt;SPAN class="s1" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Aug 2015 01:45:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/High-resolution-image-label-in-Office-Document/m-p/195105#M7230</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2015-08-09T01:45:16Z</dc:date>
    </item>
  </channel>
</rss>

