Hello.
In order to execute reports’ rendering into the HTML 4.0 format I use the ReportExecutionService class
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.
The original SSRS reportViewer and my project the images display as in the picture below:
Image properties in the Designer:
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?