Hello.
In order to execute reports’ rendering into the HTML 4.0 format I use the ReportExecutionService class (http://msdn.microsoft.com/en-us/library/ms164418(v=SQL.90).aspx)
In order to get exported report as a stream I use the following code:
var ms = new MemoryStream(connection.Render(format, dev_info, out ext, out mime_type, out encoding, out warnings, out streamIds));
The issue is: when I display the received stream in a browser, the images with the “Fit proportional” property display incorrectly.
In the original SSRS reportViewer the images display as in the picture below:
Image may be NSFW.
Clik here to view.
In our reportViewer the images display as follows:
Image may be NSFW.
Clik here to view.
Image properties in the Designer:
Image may be NSFW.
Clik here to view.
What configuration settings should I set so that I am able to display exported report with images from my application as in the original SSRS reportViewer?