2015-10-20 63 views
-3

我不能在我的Windows Phone應用程序中使用GetPixel函數。它給我一個錯誤:如何在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?) 
+1

第1步:閱讀並理解這一點 - http://stackoverflow.com/toul 第2步:編輯此問題 – Wosi

+0

發佈您的代碼。我們不是魔術師,不能讀懂你的想法。 –

+0

看看nuget包'WriteablebitmapEx',我很確定它有一個'WritePixel' – thumbmunkeys

回答

1

GetPixel功能是類System.Drawing.Bitmap的成員。而你正在使用System.Media.WriteableBitmap。來源:MSDN - Bitmap.GetPixelsWriteableBitmap

相關問題