WPF 二进制图片的转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 二进制图片的转换相关的知识,希望对你有一定的参考价值。
从数据库里读取二进制Byte类型数据转成图片显示
参考技术A private byte[] FileContent(string fileName) FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read); try byte[] buffur = new byte[fs.Length]; fs.Read(buffur, 0, (int)fs.Length); return buffur; catch (Exception ex) return null; finally if (fs != null) //关闭资源 fs.Close(); 记得带上IO命名空间追问我怎么感觉这是把图标转成二进制
参考技术B public System.Drawing.Image ReturnPhoto(byte[] streamByte)System.IO.MemoryStream ms = new System.IO.MemoryStream(streamByte);
System.Drawing.Image img = System.Drawing.Image.FromStream(ms);
return img;
追问
那如果要把图片保存到本地呐
追答加一句 img.Save(@“路径//1.png”);
本回答被提问者采纳以上是关于WPF 二进制图片的转换的主要内容,如果未能解决你的问题,请参考以下文章