各位好,由于我想要将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。
或者是设定上有问题,还是哪边使用错误。