在C#/.NET/.NET Core应用程序编程开发中,如何将图片(image)转换成字节数组(Byte Array),或者反过来,将字节数组(Byte Array)转换成图片(image)呢?
Rector
2020-04-29 提问
以下是图片(Image)和字节数组(Byte Array)之间的相互转换,示例如下:
2020-04-27 回答
使用MemoryStream实例对象作为Image.Save()方法的参数,如下:
MemoryStream
Image.Save()
使用ImageConverter类的ConvertTo()方法来转换,示例如下:
ImageConverter
ConvertTo()
使用System.IO.File.ReadAllBytes()方法直接从文件读取,示例如下:
System.IO.File.ReadAllBytes()
码龄: 3135天
专注.NET/.NET Core