在 windows phone 应用程序 8.1 中创建 WriteableBitmap?
Create WriteableBitmap in windows phone app 8.1?
我正在 windows phone 应用中创建二维码扫描
using (IRandomAccessStream fileStream = await file.OpenAsync(FileAccessMode.Read))
{
wrb = await Windows.UI.Xaml.Media.Imaging.BitmapFactory.New(1, 1).FromStream(fileStream);
}
在上面的代码中,我在 "BitmapFactory" 中遇到错误。
显示以下错误:
The type or namespace name 'BitmapFactory' does not exist in the
namespace 'Windows.UI.Xaml.Media.Imaging' (are you missing an assembly
reference?)
您错过了 WritableBitmapEx.WinRT.dll
。它位于 Sample Projects bin -> Debug Folder 中。如果它已经在您的参考文献中列出,请将其删除并重新添加。然后就可以了!
我正在 windows phone 应用中创建二维码扫描
using (IRandomAccessStream fileStream = await file.OpenAsync(FileAccessMode.Read))
{
wrb = await Windows.UI.Xaml.Media.Imaging.BitmapFactory.New(1, 1).FromStream(fileStream);
}
在上面的代码中,我在 "BitmapFactory" 中遇到错误。
显示以下错误:
The type or namespace name 'BitmapFactory' does not exist in the namespace 'Windows.UI.Xaml.Media.Imaging' (are you missing an assembly reference?)
您错过了 WritableBitmapEx.WinRT.dll
。它位于 Sample Projects bin -> Debug Folder 中。如果它已经在您的参考文献中列出,请将其删除并重新添加。然后就可以了!