我想对我的 Java 程序中的屏幕事件做出反应,所以我想在我的实际屏幕中找到一个图像。我试图编写一种方法来从机器人类中获取屏幕截图,然后搜索像素 - 但它需要很长时间。
我知道在 AutoIt 中有一个外部 DLL 可以很好地完成这项工作,现在我试图让它在 java 中运行......但我被卡住了:/
.dll 在 AutoIt Includes 中被调用,如下所示:
Func _ImageSearch($findImage,$resultPosition,ByRef $x, ByRef $y,$tolerance)
return _ImageSearchArea($findImage,$resultPosition,0,0,@DesktopWidth,@DesktopHeight,$x,$y,$tolerance)
EndFunc
和:
Func _ImageSearchArea($findImage,$resultPosition,$x1,$y1,$right,$bottom,ByRef $x, ByRef $y, $tolerance)
if $tolerance>0 then $findImage = "*" & $tolerance & " " & $findImage
$result = DllCall("ImageSearchDLL.dll","str","ImageSearch","int",$x1,"int",$y1,"int",$right,"int",$bottom,"str",$findImage)
if $result[0]="0" then return 0
$array = StringSplit($result[0],"|")
$x=Int(Number($array[2]))
$y=Int(Number($array[3]))
if $resultPosition=1 then
$x=$x + Int(Number($array[4])/2)
$y=$y + Int(Number($array[5])/2)
endif
return 1
EndFunc
我得到了 dll 并尝试了 jna 之类的东西,但我无法让它工作。我还尝试使用 AutoItX 让 AutoIt Functions 在 Java 中运行,但它不适用于包含。你能帮助我吗?
编辑:好的,我在 JNA 上做了另一次尝试,现在我得到了一个字符串 - 但字符串意味着错误。有什么问题?我有一个界面:
public interface ImageSearchDLL extends Library{
ImageSearchDLL INSTANCE = (ImageSearchDLL) Native.loadLibrary("ImageSearchDLL", ImageSearchDLL.class);
String ImageSearch(int x1, int y1, int x2, int y2, String findImage);
}
我这样称呼它:
static {
File file = new File("libs", "ImageSearchDLL.dll");
System.load(file.getAbsolutePath());
}
(...)
String a = ImageSearchDLL.INSTANCE.ImageSearch(0, 0, 500, 500, "C:\myProg\OK.bmp");
我总是得到“0”,这意味着错误或未找到,就像我在 AutoIT 文件中看到的那样:
; If error exit
if $result[0]="0" then return 0
你能帮我解决这个问题吗?