gpt4 book ai didi

c# - 从数据库加载 PictureBox 图像

转载 作者:可可西里 更新时间:2023-11-01 09:00:25 26 4
gpt4 key购买 nike

我正在尝试将图像从数据库加载到 PictureBox。我使用以下这些代码将它们加载到我的图片中。我已经写了一些代码,但不知道我应该做什么才能继续。

我们将不胜感激。

private void button1_Click(object sender, EventArgs e)
{
sql = new SqlConnection(@"Data Source=PC-PC\PC;Initial Catalog=Test;Integrated Security=True");
cmd = new SqlCommand();
cmd.Connection = sql;
cmd.CommandText = ("select Image from Entry where EntryID =@EntryID");
cmd.Parameters.AddWithValue("@EntryID", Convert.ToInt32(textBox1.Text));
}

最佳答案

在 button1_Click 中继续这样的操作:

// Your code first, here.

var da = new SqlDataAdapter(cmd);
var ds = new DataSet();
da.Fill(ds, "Images");
int count = ds.Tables["Images"].Rows.Count;

if (count > 0)
{
var data = (Byte[])ds.Tables["Images"].Rows[count - 1]["Image"];
var stream = new MemoryStream(data);
pictureBox1.Image = Image.FromStream(stream);
}

关于c# - 从数据库加载 PictureBox 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10454595/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com