我正在尝试@CustomerSign
在 RDLC 报告中使用参数()显示图像(base64 字符串) (我正在从报告中呈现 PDF 文件并且我正在查看 PDF 文件)
我已将图像属性配置如下:
选择图像来源:Database
使用此字段:
=Convert.FromBase64String(Parameters!CustomerSign.Value)
使用此 MIME 类型:image/png
并传递参数:
ReportParameter CustomerSign = new ReportParameter("CustomerSign", obj.SignImage);
rptvw.LocalReport.SetParameters(CustomerSign);
但是图像显示红十字[X]
而不是图像,并且不会出错!
可能是什么问题?