안녕하세요. 이번에 Gdip으로 비활성 이미지 서치를 하려고 도전중입니다.
그런데 참 마음같지 않네요.
원래 비활성 전에는 잘 인식하던것이 Gdip으로 변경하면서
화면 터치를 마구마구 해버리는겁니다. ㅠㅠ
뭐가 문제일지 조언좀 부탁드리겠습니다.
설 명절 맛난 음식 많이들 드시고 건강하시길 바라겠습니다.
F2::
시작:
loop
{
gosub, 1
gosub, 2
gosub, 3
}
1:
if(Search_img("Image\1.bmp",winid,x,y))
{
pos := 500|350<<16 ;이미지와 터치 위치가 달라서 어쩔수 없이 좌표를 넣어주게 되었습니다.
PostMessage, 0x201, 1, %pos%, , %WinTitle%
PostMessage, 0x202, 0, %pos%, , %WinTitle%
sleep, 1000
}
return
2:
if(Search_img("Image\2.bmp",winid,x,y))
{
pos := 270|546<<16
PostMessage, 0x201, 1, %pos%, , %WinTitle%
PostMessage, 0x202, 0, %pos%, , %WinTitle%
sleep, 1000
}
return
3:
if(Search_img("Image\3.bmp",winid,x,y))
{
pos := 380|380<<16
PostMessage, 0x201, 1, %pos%, , %WinTitle%
PostMessage, 0x202, 0, %pos%, , %WinTitle%
sleep, 1000
}
return
search_img(image,hwnd, byref vx, byref vy) {
pToken:=Gdip_Startup()
pBitmapHayStack:=Gdip_BitmapFromhwnd(hwnd)
pBitmapNeedle:=Gdip_CreateBitmapFromFile(image)
Sleep, 1000
if Gdip_ImageSearch(pBitmapHayStack,pBitmapNeedle,list,0,0,0,0,30,0x000000,1,1) { ;이부분을 30을 설정해 둔것을 255까지 올려 봤는데도 안되네요 ㅠㅠ
StringSplit, LISTArray, LIST, `,
vx:=LISTArray1
vy:=LISTArray2
Gdip_DisposeImage(pBitmapHayStack), Gdip_DisposeImage(pBitmapNeedle)
Gdip_Shutdown(pToken)
return true
}
else
{
Gdip_DisposeImage(pBitmapHayStack), Gdip_DisposeImage(pBitmapNeedle)
Gdip_Shutdown(pToken)
return false
}
}
틀림 pos := 270|546<<16
맞음 pos := x270|y546<<16
감사합니다