C#从数据库中提取图片并显示在PictureBox中
Byte[]imgbt=(Byte[])dt.Rows[0]["photo"];if(imgbt.Length!=0){MemoryStreamstream=newMem...
Byte[] imgbt = (Byte[])dt.Rows[0]["photo"];
if (imgbt.Length != 0)
{
MemoryStream stream = new MemoryStream();
stream.Write(imgbt, 0, imgbt.Length);
Bitmap bitmap = new Bitmap(stream);
}
Byte[] imgbt = (Byte[])dt.Rows[0]["photo"];已经查出来了,是正确的 展开
if (imgbt.Length != 0)
{
MemoryStream stream = new MemoryStream();
stream.Write(imgbt, 0, imgbt.Length);
Bitmap bitmap = new Bitmap(stream);
}
Byte[] imgbt = (Byte[])dt.Rows[0]["photo"];已经查出来了,是正确的 展开
展开全部
你想提问的问题是什么?“Byte[] imgbt = (Byte[])dt.Rows[0]["photo"];”不理解,还是其它的?如果是显示不了图片,将if里面的改为下面的试试:
MemoryStream ms = new MemoryStream(imgbt );
Bitmap bmpt = new Bitmap(ms);
pictureBox1.Image = bmpt;
MemoryStream ms = new MemoryStream(imgbt );
Bitmap bmpt = new Bitmap(ms);
pictureBox1.Image = bmpt;
更多追问追答
追问
就是说我从数据库中找图片,字节数已经找出来了,
跟踪代码到 Bitmap bmpt = new Bitmap(ms);这一步时出错,说参数无效
追答
这样你要确定下,你保存数据进入数据库的数据有没有出错,也就是将图片转为成二进制时的二进制数据(还没存入数据库)跟从数据库中提取出来的数据比较下,看看一样不!
我曾经也遇到过这样的情况,存入数据库时有数据,提取出来也有数据,可就是还原成图片时出错了;查找了后才知道,是存入数据库时的数据有错误。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询