Hello,
i created a RDLC-Report. The report will be shown as expected in the report viewer.
But when i export the report as PDF (with ReportWriter or ReportViewer) the width of the background images are not correct.
Version: 15.3460.0.26
Code:
ReportWriter writer = new ReportWriter();
writer.ReportProcessingMode = ProcessingMode.Local;
writer.LoadReport(read);
....
writer.SetParameters(Presenter.GetReportParameters());
writer.PageSettings = new PageSettings();
writer.PageSettings.TopMargin = 0;
writer.PageSettings.LeftMargin = 0;
writer.PageSettings.RightMargin = 0;
writer.PageSettings.BottomMargin = 0;
writer.Save(path, WriterFormat.PDF);
Thank you very much!
Attachment:
issu_88b298b6.zip