function 广告X识别(IP地址,x,y,x1,y1)
snapShot("/mnt/sdcard/test.png",x,y,x1,y1)
local b64 = getFileBase64("/mnt/sdcard/test.png")
local 表数据={
['b64']= b64 ,
['zjby']= "1" ,--如果不为空则填充四周边缘
}
local ret= httpPost(IP地址.."/guanbix?",jsonLib.encode(表数据))
print(ret)
if ret ~= nil and ret ~= "" and ret ~= "{}" then
ret = jsonLib.decode(ret)
tap(math.floor(ret["x"])+x,math.floor(ret["y"])+y)
end
end
广告X识别("124.222.239.48:9999",173,311,366,583)
|