<?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: Using a letterhead with SAS pdf reports in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554819#M22681</link>
    <description>Yes, but then you're likely messing around with ODS LAYOUT but that's not something I'm very familiar with. I would suggest marking this answered -your own answer is fine and then starting a new thread with your new question.</description>
    <pubDate>Mon, 29 Apr 2019 19:16:19 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-04-29T19:16:19Z</dc:date>
    <item>
      <title>Using a letterhead with SAS pdf reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554519#M22674</link>
      <description>&lt;P&gt;My problem is this: I need to create individual reports with all reports being on a company letterhead that I have in a word/pdf file. My first approach to this was copying the header and footer images to put in the report but it distorts the images and makes them blurry.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is the best way to accomplish this?&amp;nbsp; I've read a lot of documentation but I am still not sure what the most painless way to get this done is and I know I am probably overthinking it at this point.&amp;nbsp; Basically I just want to generate multiple single page pdf reports onto the same static letterhead template I was given.&amp;nbsp; If anyone could point me in the right direction I'd really appreciate it.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 21:17:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554519#M22674</guid>
      <dc:creator>lbogar314</dc:creator>
      <dc:date>2019-04-27T21:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using a letterhead with SAS pdf reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554524#M22675</link>
      <description>&lt;P&gt;You're using the correct approach, get the image as a PNG or SVG file so it scales properly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post the code to show how you're doing it-maybe you're missing a step to control the resolution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/145619"&gt;@lbogar314&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;My problem is this: I need to create individual reports with all reports being on a company letterhead that I have in a word/pdf file. My first approach to this was copying the header and footer images to put in the report but it distorts the images and makes them blurry.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the best way to accomplish this?&amp;nbsp; I've read a lot of documentation but I am still not sure what the most painless way to get this done is and I know I am probably overthinking it at this point.&amp;nbsp; Basically I just want to generate multiple single page pdf reports onto the same static letterhead template I was given.&amp;nbsp; If anyone could point me in the right direction I'd really appreciate it.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 22:00:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554524#M22675</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-27T22:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using a letterhead with SAS pdf reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554789#M22677</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data = Reporting split= ' ';

	title j=left "^S={preimage='P:\sasusers\lb\Header.png?width=2.5in&amp;amp;height=0.74in'}";

	column user_id description response; 

	define user_id / group noprint ; 
	define description / left width = 200 flow display "Skill Tested" ; 
	define response / display "Result" center; 

	break after user_id / page;



run;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The Word document I got it from says the original image size 2.37" by 8.02" which scaled to 0.74" by 2.5".&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 17:42:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554789#M22677</guid>
      <dc:creator>lbogar314</dc:creator>
      <dc:date>2019-04-29T17:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using a letterhead with SAS pdf reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554795#M22678</link>
      <description>&lt;P&gt;I resized the picture before putting it in the report and it seems to be much clearer- I'm not sure why I didn't think of trying that sooner.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 17:51:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554795#M22678</guid>
      <dc:creator>lbogar314</dc:creator>
      <dc:date>2019-04-29T17:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using a letterhead with SAS pdf reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554799#M22679</link>
      <description>One other issue I've seen, Adobe PDF doesn't show it well for some reason so you think the resolution is crap, but when you print it or view in other viewers it's fine. Glad you got it working - especially since it is the right way to do it!</description>
      <pubDate>Mon, 29 Apr 2019 17:57:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554799#M22679</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-29T17:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using a letterhead with SAS pdf reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554815#M22680</link>
      <description>&lt;P&gt;Definitely a good thing to note! Is it possible to have text on the same line as the image?&amp;nbsp; Basically I want to have the logo on the left side and then start a few lines of text in that same area on the right.&amp;nbsp; Thank you.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 18:55:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554815#M22680</guid>
      <dc:creator>lbogar314</dc:creator>
      <dc:date>2019-04-29T18:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using a letterhead with SAS pdf reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554819#M22681</link>
      <description>Yes, but then you're likely messing around with ODS LAYOUT but that's not something I'm very familiar with. I would suggest marking this answered -your own answer is fine and then starting a new thread with your new question.</description>
      <pubDate>Mon, 29 Apr 2019 19:16:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Using-a-letterhead-with-SAS-pdf-reports/m-p/554819#M22681</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-29T19:16:19Z</dc:date>
    </item>
  </channel>
</rss>

