当前位置:   article > 正文

【触动精灵将图片转成base64字符串后通过post方式上传给服务器】_触动精灵上传文件

触动精灵上传文件

触动端的代码

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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/765272
推荐阅读
  

闽ICP备14008679号