使用C# 將影像儲存在資料庫中
使用C# 將使用者影像保存在資料庫中是Web 和桌面應用程式中的常見任務。本綜合指南提供了該流程的詳細說明,解決了以下問題:「如何在C# 中將使用者影像儲存到資料庫中?」
方法概述
至使用C#將影像儲存到資料庫中,請依照下列步驟操作:
範例程式碼
以下是示範上述步驟的範例程式碼片段:
using System.Drawing; using System.Drawing.Imaging; using System.Data; public static void PersistImage(string path, IDbConnection connection) { using (var command = connection.CreateCommand()) { Image img = Image.FromFile(path); MemoryStream tmpStream = new MemoryStream(); img.Save(tmpStream, ImageFormat.Png); // change to other format tmpStream.Seek(0, SeekOrigin.Begin); byte[] imgBytes = new byte[MAX_IMG_SIZE]; tmpStream.Read(imgBytes, 0, MAX_IMG_SIZE); command.CommandText = "INSERT INTO images(payload) VALUES (:payload)"; IDataParameter par = command.CreateParameter(); par.ParameterName = "payload"; par.DbType = DbType.Binary; par.Value = imgBytes; command.Parameters.Add(par); command.ExecuteNonQuery(); } }
此方法假設您有一個資料庫表,其中包含位元組類型的列來儲存圖像資料。請記得根據特定資料庫設定的需要調整 SQL 語句和列定義。
透過執行以下步驟並使用提供的範例程式碼,您可以使用 C# 有效地將使用者影像保存在資料庫中。此技術對於儲存個人資料圖片、專輯封面或任何其他需要在關聯式資料庫系統中管理的圖像資料非常有價值。
以上是如何使用 C# 將使用者圖像儲存到資料庫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!