I'm trying to display image(base64 string) using parameter(@CustomerSign
) in RDLC report (I'm rendering PDF file from report and I'm seeing PDF file)
I've configured image property as below:
Select the image source : Database
Use this field :
=Convert.FromBase64String(Parameters!CustomerSign.Value)
Use this MIME type: image/png
And passing parameter:
ReportParameter CustomerSign = new ReportParameter("CustomerSign", obj.SignImage);
rptvw.LocalReport.SetParameters(CustomerSign);
But the image showing red Cross [X]
instead of image, and doesn't gives an error!
What could be the issue?
I've also tried: How can I render a PNG image (as a memory stream) onto a .NET ReportViewer report surface