2012-07-27 148 views
0

我想通過使用它的路徑將圖像保存到sql服務器數據庫,我不想保存圖像它自我我只是想當我上傳圖像以我的形式,當我點擊一個按鈕,這個按鈕上傳圖像到應用程序文件夾,然後將此圖片的路徑保存到databasen,我該怎麼做?保存/上傳圖像到數據庫使用其路徑

2 - 如何將此圖片添加到dataGridView?

注意:我使用C#作爲編程語言。

回答

1

獲取圖像文件路徑可以使用OpenFileDialog完成。
這個回答可以幫助你得到文件路徑Extracting Path from OpenFileDialog path/filename

1)您可以將它們使用File.Copy(path, path2)功能,您的應用程序目錄複製:

string path = Directory.GetCurrentDirectory();

2)您需要使用位圖可以從其文件加載圖像路徑:

Bitmap myBmp = Bitmap.FromFile("path here"); 

然後你就可以將其添加到DataGridView假設包含DataGridViewImageColumn

yourDataGridView.Rows.Add(<column1 value>, <column2 value>, myBmp, <column3 value>, <column4 value>); 
相關問題