如何在Windows Phone应用程序中使用GetPixel函数

本文关键字:GetPixel 函数 应用程序 Windows Phone | 更新日期: 2023-09-27 18:18:35

我不能在我的Windows Phone应用程序中使用GetPixel功能。它给了我一个错误:

'System.Windows.Media.Imaging.WriteableBitmap' does not
contain a definition for 'GetPixel' and no extension method 'GetPixel'
accepting a first argument of type
'System.Windows.Media.Imaging.WriteableBitmap' could be found (are you
missing a using directive or an assembly reference?)

如何在Windows Phone应用程序中使用GetPixel函数

GetPixel函数是System.Drawing.Bitmap类的成员。而你使用的是System.Media.WriteableBitmap。来源:MSDN -位图。GetPixels和WriteableBitmap.