在C# 中從檔案路徑將影像編碼為Base64 字串
在C# 中,您可以轉換按使用者電腦上的路徑選擇的映像轉換為Base64 字串。這允許您將圖像作為資料 URI 嵌入到應用程式中或透過網路發送。
實現此目的的一種方法如下:
這裡是一個範例程式碼示範:
using (Image image = Image.FromFile(Path)) { using (MemoryStream m = new MemoryStream()) { image.Save(m, image.RawFormat); byte[] imageBytes = m.ToArray(); // Convert byte[] to Base64 String string base64String = Convert.ToBase64String(imageBytes); return base64String; } }
透過應用此技術,您可以將使用者電腦上的任何影像轉換為Base64 字串,使您能夠在各種場景下管理和共享影像。
以上是如何在 C# 中將檔案路徑中的圖像編碼為 Base64 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!