码迷,mamicode.com
首页 > 其他好文 > 详细

图片读写

时间:2015-07-23 19:40:02      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

byte[] imge = File.ReadAllBytes(path);将图片读为二进制代码
System.IO.MemoryStream ms = new System.IO.MemoryStream(imge);//img是从数据库中读取出来的字节数组
ms.Seek(0, System.IO.SeekOrigin.Begin);
BitmapImage newBitmapImage = new BitmapImage();
newBitmapImage.BeginInit();
newBitmapImage.StreamSource = ms;//二进制代码转为图片
newBitmapImage.EndInit();
//BitmapImage image = new BitmapImage(new Uri(path, UriKind.Absolute));
img.Source = newBitmapImage;
File.Delete(path);

图片读写

标签:

原文地址:http://www.cnblogs.com/weiweiboqi/p/4671219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!