如何从数据库中检索位图图像?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从数据库中检索位图图像?相关的知识,希望对你有一定的参考价值。

我正在执行搜索操作并将图像从数据库中检索到pictureEdit控件中。我将图像存储为varchar(4000),并且图像以System.Drawing.Bitmap的格式存储。搜索时出现错误

无法将类型为'System.String'的对象转换为类型为'System.Byte []'

我的代码:

private void btnSearch_Click(object sender, EventArgs e)
{
        byte[] getImg = new byte[0];

        SqlDataAdapter dataAdapter = new SqlDataAdapter("select sid,sname,fathername,contactno,address,sphoto from Student where sclass='" + lukupClass.Text + "' and ssection='" + lukupSection.Text + "' and sname='" + textBox1.Text + "'", sqlConnection);

        DataTable dt = new DataTable();
        dataAdapter.Fill(dt);

        if (dt.Rows.Count > 0)
        {
            txtID.Text = dt.Rows[0]["sid"].ToString();
            txtStudentName.Text = dt.Rows[0]["sname"].ToString();
            txtFatherName.Text = dt.Rows[0]["fathername"].ToString();
            txtContactNo.Text = dt.Rows[0]["contactno"].ToString();
            memoAddress.Text = dt.Rows[0]["address"].ToString();
            getImg = ((byte[])dt.Rows[0]["sphoto"]);
            byte[] imgData = getImg;
            MemoryStream stream = new MemoryStream(imgData);
            picStudent.Image = Image.FromStream(new MemoryStream(getImg));
        }
        else
        {
            MessageBox.Show("No Data Found with this Name.");
        }
}
答案
None

以上是关于如何从数据库中检索位图图像?的主要内容,如果未能解决你的问题,请参考以下文章

如何从Android片段中的相机获取图像

如何在android中使用imageloader释放位图内存?

Android:从数据库中检索位图的问题

从firebase检索图像以在片段中的回收器视图时出错

android-如何从标记位图开始共享元素过渡?

如何将字节数组中的图像文件数据转换为位图?