我的数据库中有一个带图像路径的字段。我需要将图像转换为字节数组以在Crystal Reports中使用。由于图像已经在我的根目录中,我不想使用上传功能。有什么方法可以实现这个目标吗?
答案 0 :(得分:1)
在研究了这个问题之后,我找到了一个适合我的解决方案。
在customerReport.SetDataSource(dt);
之前
我称这种方法:showImageonReport(dt);
dt
是数据表:
"Image"
是保存图像路径的列名
private void showImageonReport(DataTable dt)
{
for (int index = 0; index < dt.Rows.Count; index++)
{
if (dt.Rows[index]["Image"].ToString() != "")
{
string s = this.Server.MapPath(
dt.Rows[index]["Image"].ToString());
if (File.Exists(s))
{
LoadImage(dt.Rows[index], "image_stream", s);
}
else
{
LoadImage(dt.Rows[index], "image_stream",
"DefaultPicturePath");
}
}
else
{
LoadImage(dt.Rows[index], "image_stream",
"DefaultPicturePath");
}
}
}
用于将图像从url加载到字节流
private void LoadImage(DataRow objDataRow, string strImageField, string FilePath)
{
try
{
FileStream fs = new FileStream(FilePath,
System.IO.FileMode.Open, System.IO.FileAccess.Read);
byte[] Image = new byte[fs.Length];
fs.Read(Image, 0, Convert.ToInt32(fs.Length));
fs.Close();
objDataRow[strImageField] = Image;
}
catch (Exception ex)
{
Response.Write("<font color=red>" + ex.Message + "</font>");
}
}
请务必注意,当您在自己创建的数据集中添加image_stream
时,请记住在数据库中添加此列,并将其声明为VARBINARY(MAX)
这应该做的工作