1 2 3 4 5 6 7 8 9 10 11 12 13 |
import java.awt.Color; import java.awt.Robot; public class Robots { public static void main(String[] args) throws Exception { Color color = (new Robot()).getPixelColor(10, 10); System.out.println("Red = " + color.getRed()); System.out.println("Green = " + color.getGreen()); System.out.println("Blue = " + color.getBlue()); } } |