[问题] 关于Byte[]转换为Image格式

楼主: chuinzong (阿荣)   2022-04-04 19:02:42
各位好,由于我想要将Byte Array转换至PictureBox工具。
写了如下的程式码
byte[] b = new byte[1];
MemoryStream ms = new MemoryStream(b);
Image ret = Image.FromStream(ms);
在ms出现两个错误讯息。
ReadTimeout = 'ms.ReadTimeout' threw an exception of type
'System.InvalidOperationException'
WriteTimeout = 'ms.WriteTimeout' threw an exception of type
'System.InvalidOperationException'
Image.FromStream跑至这行时,跳出未处理的例外状况-参数无效。
想问各位,我看网络上范例都是将Byte Array转成Image都是用FromStream。
或者是设定上有问题,还是哪边使用错误。
作者: pxr35642 (pxr35642)   2022-04-07 12:20:00
长度应该是影像的宽高吧(?
楼主: chuinzong (阿荣)   2022-04-10 18:48:00
可是我只有用1Byte的影像长宽
作者: Litfal (Litfal)   2022-04-11 12:10:00
1byte是想建什么,你要电脑猜给你吗你要建rgb raw请用指定长宽位深和指标的Bitmap建构式
楼主: chuinzong (阿荣)   2022-04-12 21:23:00
我知道了,有看到相关资讯,感谢

Links booklink

Contact Us: admin [ a t ] ucptt.com