如何使用 C# 从 PNG 文件中获取字节

发布于 2024-08-15 04:30:31 字数 59 浏览 5 评论 0原文

如何使用 C# 从 PNG 文件中获取字节(原因:我需要将 PNG 作为 XML 文件中的字符串传递。)

How do I get bytes out of a PNG file using C#, (Reason for this:I need to pass the PNG as a string in an XML file.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灯角 2024-08-22 04:30:31

System.IO.File.ReadAllBytes

System.Convert.ToBase64String

System.Convert.ToBase64String(System.IO.File.ReadAllBytes(filePath));

System.IO.File.ReadAllBytes

System.Convert.ToBase64String

System.Convert.ToBase64String(System.IO.File.ReadAllBytes(filePath));
木緿 2024-08-22 04:30:31

或者,如果内存中有 PNG 文件:

  • 从中创建一个 System.Drawing.Bitmap 对象
  • 使用 Bitmap.Save() 将其序列化到内存流(传入 PNG 作为编码)
  • 使用 MemoryStream.GetBuffer() 检索MS 的底层字节数组
  • 使用 Convert.ToBase64String(byte[], 0, memoryStream.Position) 将其转换为 Base64 字符串

Alternatively, if you have the PNG file in memory:

  • create a System.Drawing.Bitmap object out of it
  • Serialize it to a memory stream using Bitmap.Save() (pass in PNG as the encoding)
  • Use MemoryStream.GetBuffer() to retrieve the underlying byte array for the MS
  • Use Convert.ToBase64String(byte[], 0, memoryStream.Position) to convert it to a base64 string
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文