使用 C# 將圖像編碼為 Base64
許多應用程式需要能夠以其他格式(例如 JSON 或 XML)嵌入圖像。在 C# 中,將圖像轉換為 Base64 字串可以方便地儲存和傳輸圖像資料。
要將影像轉換為 Base64 字串,請依照下列步驟操作:
以下是將位於「C:/image/1.gif」的圖片轉換為 base64 的範例實作字串:
using (Image image = Image.FromFile("C:/image/1.gif")) { 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; } }
以上是如何在 C# 中將圖像編碼為 Base64 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!