gpt4 book ai didi

Java获取像素区域并转换为图像 - 如何提高效率?

转载 作者:行者123 更新时间:2023-12-04 06:07:32 26 4
gpt4 key购买 nike

我有一些代码可以抓取屏幕上的像素区域并将它们转换为 BufferedImage 对象。问题是 - 它非常缓慢,所以我正在寻求支持以提高其速度!

代码如下:

public BufferedImage getScreenPortion(Point topleft,Point bottomright){

int width = bottomright.x - topleft.x;
int height = bottomright.y - topleft.y;
BufferedImage bi = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);

for(int p=0;p<height;p++){

for(int i= 0;i<width;i++){

Color pixel = robot.getPixelColor(topleft.x+i, topleft.y+p);
bi.setRGB(i, p, pixel.getRGB());
}
}

return bi;


}

我正在通过它: getScreenPortion(new Point(1081,824),new Point(1111,844));这意味着我试图获得大约 30x20 的区域 - 但它需要 7 秒的时间,这非常慢!

最佳答案

修复它 - 我现在改为使用:

Rectangle screenRect = new Rectangle(topleft.x, topleft.y, width, height);
BufferedImage grid = robot.createScreenCapture(screenRect);

关于Java获取像素区域并转换为图像 - 如何提高效率?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8175392/

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