public Color getPixelColor(int x, int y)
x
- 像素的 X 位置y
- 像素的 Y 位置 像素的颜色
取色器通过x,y坐标返回颜色值
我通可以通过定义鼠标监听来获得鼠标的x,y坐标然后来获得要取的位置的颜色值
具体例子如下
public void mouseClicked(MouseEvent e) {
Point mousepoint = MouseInfo.getPointerInfo().getLocation();
Color c = robot.getPixelColor(mousepoint.x, mousepoint.y);
strawLitener.setColor(c);
}
给大家介绍一个java取色器工具,布布扣,bubuko.com
原文地址:http://blog.csdn.net/songjunyan/article/details/37532907