C# MySQL 图片的存储与读取

更新时间:2022-11-09 22:42:28 阅读: 评论:0


2022年11月9日发
(作者:华人首富排行榜)

C#MySQL图片的存储与读取

一、存储图片

privatevoidbutton3_Click(objectnder,EventArg)

{

if(!=null)

{

//将图片对象image转换成缓冲流imageStream

MemoryStreamimageStream=newMemoryStream();

(imageStream,

);

//获得图片的字节数组imageByte

byte[]imageByte=fer();

//建立数据库连接

MySqlConnection

();

//设置命令参数

stringinrtStr="inrtintoimg(image)values(?imageByte)";

MySqlCommandcomm=newMySqlCommand();

tion=conn;

dText=inrtStr;

dType=;

//设置数据库字段类型MediumBlob的值为图片字节数组imageByte

(new

Blob)).Value=imageByte;

//执行命令

try

{

eNonQuery();

}

catch(Exceptionex)

{

(ng());

}

e();

();

e();

}

}

MySqlParameter("?imageByte",

conn=new

MySqlConnection("Server=localhost;Uid=root;Password=123;Databa=test");

二、读取图片

privatevoidbutton4_Click(objectnder,EventArg)

{

//建立数据库连接

MySqlConnection

();

//设置命令参数

MySqlCommandcomm=newMySqlCommand("lectimagefromimgorderbyiddesc",

conn);

//执行命令并获得数据读取器

MySqlDataReaderdr=eReader();

if(())

{

//读出图片字节数组至byte[]

byte[]imageByte=newbyte[es(0,0,null,0,ue)];

es(0,0,imageByte,0,);

//将图片字节数组加载入缓冲流

MemoryStreamimageStream=newMemoryStream(imageByte);

//从缓冲流生成图片

Imageimage=ream(imageStream,true);

=image;

}

e();

e();

();

e();

}

conn=new

MySqlConnection("Server=localhost;Uid=root;Password=123;Databa=test");


本文发布于:2022-11-09 22:42:28,感谢您对本站的认可!

本文链接:http://www.wtabcd.cn/fanwen/fan/82/461930.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:dispose
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图