I am sure I am missing something basic, but can't figure it out: I want to get the color of a pixel from an imageview (called "iv") bitmap:
But I am told GetPixel was not amongst the Bitmap members. When I look up "Bitmap", the documentation tells me that GetPixel is a member of a Bitmap object.
Thank you.
Regards,
B4X:
iv.Bitmap = LoadBitmap(File.DirAssets, "t.gif")
dim c as int
c = iv.Bitmap.GetPixel(2,3)
But I am told GetPixel was not amongst the Bitmap members. When I look up "Bitmap", the documentation tells me that GetPixel is a member of a Bitmap object.
Thank you.
Regards,