赞
踩
function OCR_Text(x1,y1,x2,y2) local url = "http://" --截图保存 snapshot("/sdcard/test"..".png",x1,y1,x2,y2); --local file = userPath().."/res/test.png" file = "/sdcard/test.png" txt = readFileString(file)--读取文件内容,返回全部内容的 string if txt then --dialog("文件内容:"..txt) else --dialog("文件不存在") end --需要下载 ts.so --local file = userPath().."/res/test.png" str = imageBase64(file) --发送的数据格式 data = [[{"key": ["image"], "value": ["]]..str..[["]}]] --dialog(data,0) --status,header,content = http.post(url,{headers=header_send,params=body_send,opts={charset="gbk"}}) status,header,content = http.post(url,{postdata = data ,opts={charset="utf8"}}) --dialog(status,16) --dialog(header,16) --dialog(content,16) if status == 200 then toast("成功",5) --dialog(header,6) --dialog(content,6) else dialog("失败") end return content end
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。