public Image ByteArrayToImage(byte[] byteArrayIn, int count)
{
MemoryStream ms = new MemoryStream(byteArrayIn, 0, count);
Image returnImage = Image.FromStream(ms);
return returnImage;
}
【C#】将Byte转换成图像
最新推荐文章于 2024-08-03 08:39:25 发布