从 postgresql 中检索 [二进制数据] 到 pictureBox
Retrieve [binary data] from postgresql to pictureBox
我需要一些帮助来检索存储在 postgresql 数据库列中的图像 [二进制数据] 并将其显示在 C# 的 pictureBox 中。我使用 MemoryStream 插入它。
谢谢!
我找到了解决方案。
byte[] imgdata = (byte[])dataGridView1.CurrentRow.Cells[1].Value;
MemoryStream ms = new MemoryStream(imgdata);
pictureBox.Image = Image.FromStream(ms);
感谢 jdweng 发表评论。
我需要一些帮助来检索存储在 postgresql 数据库列中的图像 [二进制数据] 并将其显示在 C# 的 pictureBox 中。我使用 MemoryStream 插入它。
谢谢!
我找到了解决方案。
byte[] imgdata = (byte[])dataGridView1.CurrentRow.Cells[1].Value;
MemoryStream ms = new MemoryStream(imgdata);
pictureBox.Image = Image.FromStream(ms);
感谢 jdweng 发表评论。