首页 > 编程 > C# > 正文

详谈C# 图片与byte[]之间以及byte[]与string之间的转换

2020-01-24 00:45:44
字体:
来源:转载
供稿:网友

实例如下:

//主要通过Stream作为中间桥梁public static Image ByteArrayToImage(byte[] iamgebytes) {  MemoryStream ms = new MemoryStream(iamgebytes);  Image image = Image.FromStream(ms);  return image;}public static byte[] ImageToByteArray(Image image) {  MemoryStream ms = new MemoryStream();  image.Save(ms, image.RawFormat);  return ms.ToArray();}public static string ByteArrayToString(byte[] bytes) {  return Convert.ToBase64String(bytes);}public static string StringToByteArray(string image) {  return Convert.FromBase64String(image);}

以上这篇详谈C# 图片与byte[]之间以及byte[]与string之间的转换就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表