c# 读取blob数据

时间:2018-09-26 10:37:13   收藏:0   阅读:436
            Stream stream = new MemoryStream(data);
            BinaryReader r = new BinaryReader(stream);
            int iRawImageWidth = r.ReadInt32();//读取图像的宽度
            int iRawImageHeight = r.ReadInt32();//读取图像的高度

 

原文:https://www.cnblogs.com/gaara-zhang/p/9705434.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!