I am using: visual studio 2008, the language for program the report is RDL and for visualize the report i use ReportViewer. What can I do?
Main Topics
Browse All TopicsI have a control ReportViewer in a web page (rwWithImage.JPG), this page have two export mode (excel and pdf). When I exported a pdf the image header not shown (rwWithImageToPdf.JPG) , but when export to excel the header image show (rwWithImageToExcel.JPG). I need show image header when i exported to pdf
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
the image is created with
RDLImage rdlHeaderImage = new RDLImage("HeaderImage", imageSource, UrlHeaderDescription);
...
then the image is add in object pagefooter
RDLPageFooter rdlPageFooter = new RDLPageFooter(rdlFooterIma
...
my question is: if the export to pdf support object image. Note that export to excel it's work fine
Business Accounts
Answer for Membership
by: RWrigleyPosted on 2009-06-09 at 12:52:50ID: 24585030
Not sure about report Viewer, but this is a common problem with Cognos products, and it's caused by the fact that in Excel or HTML, the server merely sends the URL down to the client program; its the client that gets the image (either Excel or your browser). But in PDF, the server itself has to go and get the image in order to add it the PDF that it's building. This tends to cause problems, because servers usually have strict controls over their ability to go out to get data from other servers.