各位好,由於我想要將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。
或者是設定上有問題,還是哪邊使用錯誤。