我有一個表格,其中存儲了圖片,並且在加載表單時我檢索到的數據和數據在System.Byte []中。將System.Byte []轉換爲圖像並以winform形式顯示在picturebox中
我希望這個以窗口形式顯示在圖片框中。 我使用C#語言和SQL Server 2005
我的代碼是這樣的:
Byte[] byteBLOBData = (Byte[])(dt.Rows[count]["stud_photo"]);
MemoryStream ms = new MemoryStream(byteBLOBData);
ms.Write(byteBLOBData, 0, byteBLOBData.Length);
photo.Image = Image.FromStream(ms); --- here i am having an error "Parameter not valid"
請誰能幫我...它非常重要的,我的項目。謝謝你在前進
可能與:http://stackoverflow.com/questions/3353860/byte-to-gray-scale-bitmapimage – 2011-03-25 10:36:16
什麼是'photo'? – user1509 2012-11-27 09:20:48