发新帖

[C#/ASP.NET] 图像Byte转Bitmap

零下一度 2022-12-9 653

图像Byte转Bitmap

public Bitmap ByteToBitmap(byte[] ImageByte) {
            Bitmap bitmap = null;
            try {
                using (MemoryStream ms = new MemoryStream(ImageByte)) {
                    bitmap = new Bitmap((Image)new Bitmap(ms));
                }
            }
            catch (Exception ex) {
                
            }
            return bitmap;
}


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1