2014-01-31 82 views
0

如何從數據庫檢索圖像我沒有使用路徑我正在使用字節格式來存儲圖像。將圖像映射到asp.net中的圖像按鈕

byte[] image = (byte[])dr[11]; 
string imageBase64 = Convert.ToBase64String(image); 

如何將該圖像映射到圖像按鈕?我怎樣才能做到這一點?

+0

可能的重複[如何將圖像格式轉換爲字節數組?](http://stackoverflow.com/questions/21473382/how-to-convert-the-image-format-to -byte-array) –

+0

這個與20分鐘前問的不同嗎?請檢查此[meta](http://meta.stackexchange.com/questions/2950/should-hi-thanks-taglines-and-salutations-be-removed-from-posts)帖子以獲取感謝筆記的推薦。 –

+0

重複以下內容。 嘗試關注下面的鏈接。這可能對您有所幫助。 [如何在ASP.NET中使用C#從數據庫檢索二進制圖像](http://stackoverflow.com/questions/18998763/how-to-retrieve-binary-image-from-database-using-c-sharp-in- ASP-網) –

回答

0

我在我的項目,以顯示圖像做了這個(保存在數據庫中爲varbinary( MAX))的圖片框,下面是代碼

photo_aray = (byte[])drow[14]; MemoryStream ms = new MemoryStream(photo_aray); pictureBox1.Image = Image.FromStream(ms);

可能是你可以根據您的要求模塑這個