Is it possible to get the pixel information, RGB values etc from the screen directly without making a screenshot and reading the bitmap?
I found this java code which seems to do the job but cannot convert it to ba4.
Can anyone help or is this possible?
I found this java code which seems to do the job but cannot convert it to ba4.
B4X:
public static Color getColorAt(int x, int y){
return new Robot().getPixelColor(x, y);
}
Can anyone help or is this possible?