图片 OCR
POST
/ocr_image请求参数
Body 参数application/json
image
string
图片路径或链接
支持http://, file://, base64://
示例
{
// http 图片
"image": "http://i0.hdslb.com/bfs/archive/c8fd97a40bf79f03e7b76cbc87236f612caef7b2.png"
// 本地图片
// "image": "file://d:\\1.jpg"
// base64图片
// "image": "base64://xxxxxx"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
retcode
integer
必需
data
object
必需
texts
array [object {3}]
必需
language
string
必需
message
string
必需
wording
string
必需
示例
{
"status": "ok",
"retcode": 0,
"data": {
"texts": [
{
"text": "Sssr",
"confidence": 1,
"coordinates": [
{
"x": 32,
"y": 20
},
{
"x": 185,
"y": 18
},
{
"x": 187,
"y": 89
},
{
"x": 34,
"y": 92
}
]
}
],
"language": ""
},
"message": "",
"wording": ""
}
最后修改时间: 10 天前