有人可以建议我如何将图像转换为字节数组,反之亦然?

我正在开发WPF应用程序并使用流读取器。

最佳答案

将图像更改为字节数组的示例代码

public byte[] ImageToByteArray(System.Drawing.Image imageIn)
{
   using (var ms = new MemoryStream())
   {
      imageIn.Save(ms,imageIn.RawFormat);
      return  ms.ToArray();
   }
}


C# Image to Byte Array and Byte Array to Image Converter Class

关于c# - 如何将图像转换为字节数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47312754/

10-13 06:23