实例如下:
//主要通过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之间的转换就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。
新闻热点
疑难解答