- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
What is the best way to accomplish this? 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. Basically I just want to generate multiple single page pdf reports onto the same static letterhead template I was given. If anyone could point me in the right direction I'd really appreciate it. 🙂
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You're using the correct approach, get the image as a PNG or SVG file so it scales properly.
Post the code to show how you're doing it-maybe you're missing a step to control the resolution.
@lbogar314 wrote:
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.
What is the best way to accomplish this? 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. Basically I just want to generate multiple single page pdf reports onto the same static letterhead template I was given. If anyone could point me in the right direction I'd really appreciate it. 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc report data = Reporting split= ' ';
title j=left "^S={preimage='P:\sasusers\lb\Header.png?width=2.5in&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;
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".
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Definitely a good thing to note! Is it possible to have text on the same line as the image? 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. Thank you. 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content