c#读取图像保存到数据库中(数据库保存图片)_C#教程-查字典教程网
c#读取图像保存到数据库中(数据库保存图片)
c#读取图像保存到数据库中(数据库保存图片)
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:注:MyTools.g_PhotoField为数据库表中的图象字段名称//将图片保存到数据库中if(this.picPho...

复制代码 代码如下:

注:MyTools.g_PhotoField为数据库表中的图象字段名称

//将图片保存到数据库中

if(this.picPhoto.Image==null)

{

m_DataRow[MyTools.g_PhotoField]=DBNull.Value;

}

else

{

try

{

MemoryStream ms = new MemoryStream ();

picPhoto.Image.Save (ms, System.Drawing.Imaging.ImageFormat.Bmp);

byte [] myData = new Byte [ms.Length ];

ms.Position = 0;

ms.Read (myData,0,Convert.ToInt32 (ms.Length ));

m_DataRow[MyTools.g_PhotoField] = myData;

}

catch(System.Exception ee)

{

MessageBox.Show(ee.Message);

}

}//else

//读取图象

if(this.m_DataRow[MyTools.g_PhotoField]!=DBNull.Value)

{

try

{

Byte[] byteBLOBData = new Byte[0];

byteBLOBData = (Byte[])m_DataRow[MyTools.g_PhotoField];

MemoryStream stmBLOBData = new MemoryStream(byteBLOBData);

this.picPhoto.Image= Image.FromStream(stmBLOBData);

}

catch(Exception ex)

{

MessageBox.Show(ex.Message);

}

}

else

{

this.picPhoto.Image= null;

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新C#教程学习
    热门C#教程学习
    编程开发子分类