C# Bitmap 转 Bytes数组
2021-07-19 01:08
标签:highlight mat sharp bit memory arp mem ima 读取 首先是Bitmap 转 MemoryStream 然后是MemoryStream 转 Byte数组 C# Bitmap 转 Bytes数组 标签:highlight mat sharp bit memory arp mem ima 读取 原文地址:https://www.cnblogs.com/dongzhaosheng/p/9523559.htmlMemoryStream ms = new MemoryStream();
bitmap.save(ms, ImageFormat.Jpeg);
ms.Seek(0, SeekOrigin.Begin); //一定不要忘记将流的初始位置重置
byte bytes = new byte[ms.Length];
ms.Read(bytes, 0, bytes.Length); //如果上面流没有seek 则这里读取的数据全会为0
ms.Dispose();
文章标题:C# Bitmap 转 Bytes数组
文章链接:http://soscw.com/index.php/essay/106264.html