图像未显示在水晶报告中

本文关键字:报告 水晶 显示 图像 | 更新日期: 2023-09-27 18:25:59

我正在尝试在水晶报告中显示图像。在下面的代码中,我转换文件流中的图像路径,然后通过数据表添加到报告源中。但未显示的静止图像

string path;
DataTable dt = new DataTable();
path = Server.MapPath("~/img/logo.jpg");   
DataColumn column = new DataColumn("Image"); //Create the column.
column.DataType = System.Type.GetType("System.Byte[]"); 
dt.Columns.Add(column);
DataRow row = dt.NewRow();
FileStream fs = new FileStream(path, System.IO.FileMode.Open, System.IO.FileAccess.Read);
Byte[] Image = new Byte[fs.Length];
fs.Read(Image, 0, Convert.ToInt32(fs.Length));
fs.Close();
row["Image"] = Image;
dt.Rows.Add(row);
dss.Tables[0].Merge(dt);
//set dataset to the report viewer.
rptDoc.SetDataSource(dss);
CrystalReportViewer1.ReportSource = rptDoc;

图像未显示在水晶报告中

您只需要将图像以字节流的形式保存到数据库中,就不需要转换回水晶报表中使用,只需将图像拖放到报表字段中即可调用带有图像的字段名,图像就会显示出来。。我以前用C#做这个。希望它也适用于你。