2013-12-11 201 views
1

我有一個使用實體框架與數據庫通信的MVC應用程序。使用實體框架映射圖像

我想獲取保存在數據庫中的圖像並將其加載到屏幕上,但我無法弄清楚這樣做的方法。

在此先感謝。

佩德羅

+0

這篇文章描述了一個可能性http://stackoverflow.com/questions/2231246/dynamic-image-from-db-using-generic-handler – Mithrandir

回答

1

你可能有一個字節數組保存圖像數據庫,則必須使用爲System.Drawing.Image類從DB附帶的字節數組轉換。

將「imageFromDb」視爲數據庫中的數組。

using (System.Drawing.Image image = System.Drawing.Image.FromStream(new MemoryStream(imageFromDb))) 

{ 
    // Do the job that you want with the image. 
} 

祝你好運:)

+0

它完美! !謝謝。 –