gpt4 book ai didi

java - 像素帮助 - Java

转载 作者:行者123 更新时间:2023-11-29 06:00:12 25 4
gpt4 key购买 nike

好的,所以我有:

Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Rectangle screenRectangle = new Rectangle(screenSize);
Robot robot = new Robot();
BufferedImage image = robot.createScreenCapture(screenRectangle)


int w = image.getWidth(null);
int h = image.getHeight(null);
int[] rgbs = new int[w*h];
image.getRGB(0, 0, w, h, rgbs, 0, w);
// find your pixel in the rgbs array
for(int y=0;y<h;y++) {
for(int x=0;x<w;x++) {
if(rgbs[(y*w) + x] == mypixel) { // mypixel
robot.mouseMove(x, y);
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);
}
}
}

有人可以向我解释一下,也许可以给我一个 mypixel 可能是什么的例子吗?答案可能很明显,但我有点困惑。提前致谢

最佳答案

获取所需颜色值的最简单方法是使用

mypixel = new Color(red, green, blue).getRGB();

关于java - 像素帮助 - Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10442875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com