BitmapImage to byte[] Windows 8 metro (WinRT)(BitmapImage 到字节 [] Windows 8 Metro (WinRT))
问题描述
我想在 Windows 8 应用程序中将 BitmapImage
转换为 byte[].我知道如何使用 windows sdk 来做到这一点,但似乎无法让它适用于 WinRT sdk.
I want to convert BitmapImage
to byte[] in windows 8 application. I know how to do it using windows sdk but can't seem to get it working for WinRT sdk.
一两篇文章建议我应该使用 WritableBitmap
来实现这一点,但没有明确的例子.
One or two posts are suggesting that I should use WritableBitmap
to achieve that but there are no clear examples.
BitmapImage 到字节数组的转换 (Windows)
以下是我发现的最好的,但对我来说仍然太模糊
following is the best I found but still too vague for me
WinRT 将图像加载到字节数组中
我将不胜感激.
推荐答案
你应该看看这里的 WriteableBitmapEx 项目 - http://writeablebitmapex.codeplex.com/ 这里讨论 - WinRT 将图像加载到字节数组中...来自答案...
You should look at the WriteableBitmapEx project here - http://writeablebitmapex.codeplex.com/ It is discussed here - WinRT Loading an Image into a Byte array... from the answer...
基本上你需要将图像加载到 WriteableBitmap 中,然后通过调用 PixelBuffer.AsStream() 访问其像素缓冲区.
Basically you need to load the image into a WriteableBitmap, then access its pixel buffer by calling PixelBuffer.AsStream().
这篇关于BitmapImage 到字节 [] Windows 8 Metro (WinRT)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:BitmapImage 到字节 [] Windows 8 Metro (WinRT)
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01