我有 1 个带有 1 个图片框、1 个文本框和 3 个按钮的 Windows 窗体:LoadFromFile、SaveToDB 和 LoadFromDB。
在 App.config 中使用 LINQ to SQL 连接和以下形式的代码:
private void btnLoadFromFile_Click(object sender, EventArgs e)
{
// open file dialog
OpenFileDialog open = new OpenFileDialog();
// image filters
open.Filter = "Image Files(*.jpg; *.jpeg; *.gif; *.bmp; *.png)|*.jpg; *.jpeg; *.gif; *.bmp; *.png";
if (open.ShowDialog() == DialogResult.OK)
{
// display image in picture box
picBox.Image = new Bitmap(open.FileName);
// image file path
textBox1.Text = open.FileName;
}
}
我可以加载图片及其形成路径。
现在我需要将图片保存到[BLOBData]
我的表中命名的图像类型字段:tblBLOB (BLOBID, BLOBData)
. 那么将图片转换为图片类型的代码是什么,然后将图片类型转换为图片在PictureBox
控件中显示的代码又是什么呢?