在 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中文网其他相关文章!