繁体   English   中英

将图像转换为字节流

[英]Convert Image to Byte Stream

我的数据库中有一个带有图像路径的字段。 我需要将图像转换为字节数组以在Crystal Reports中使用。 由于图像已经在我的根目录中,我不想使用上传功能。 有什么办法可以实现吗?

在研究了这个问题后,我发现了一个适合我的解决方案。

customerReport.SetDataSource(dt);之前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)

这应该做的工作

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM