I just came into contact with the desert and am not very familiar with it. There is another question. After binding the window, you can find pictures in the background, right? Can you find them even if the window is minimized? Or is it possible to minimize the window only if it is blocked.
functionPrototype: long FindPic(x1, y1, x2, y2, pic_name, delta_color,sim, dir, intX, intY)
This is the image path
There is another command that seems to be looking for memory pictures, but it won't work.
Function prototype:
long FindPicMem(x1, y1, x2, y2, pic_info, delta_color,sim, dir,intX, intY)
Parameter definition:
x1 number of shaping: upper left X coordinate of area
y1 Skew number: upper left Y coordinate of the area
x2 number of skewers: the lower right X coordinate of the area
y2 Skewer number: lower right Y coordinate of the area
pic_info string: picture data address set. The format is "address 1, length 1|address 2, length 2......|address n, length n". It can be combined with AppendPicAddr.
Address means 24 bitsBitmapThe first address of the resource in memory is expressed in decimal values.
Length represents the length of the bitmap resource in memory, expressed in decimal values.
delta_color string: color offset, for example, "203040", indicates that the color offsets of RGB are 20 30 40 (here is the hexadecimal representation)
sim double precision floating point number: similarity, value range 0.1-1.0
dir styling number: look up direction 0: from left to right, from top to bottom 1: from left to right, from bottom to top 2: from right to left, from top to bottom 3: from right to left, from bottom to top
intX variable parameter pointer: Return to the X coordinate in the upper left corner of the picture
intY variable parameter pointer: Return to the Y coordinate in the upper left corner of the picture
Example:
pic_info = ""
pic_info = (pic_info,12034,643)
pic_info = (pic_info,328435,8935)
pic_info = (pic_info,809234,789)
dm_ret = (0,0,2000,2000, pic_info,"000000",0.9,0,intX,intY)
If intX >= 0 and intY >= 0 Then
MessageBox "Finished"
End If
--------------------------------------------------------------------------------------------------------
AppendPicAddr function prototype:string AppendPicAddr(pic_info,addr,size)
Parameter definition:
pic_info string: old address description string
addr Number of plastic skewers: data address
size number of skewers: data length
Return value:
String:
New address description string
Example:
pic_info = ""
pic_info = (pic_info,12034,643)
pic_info = (pic_info,328435,8935)
pic_info = (pic_info,809234,789)