Appearance
抠图
请求地址
POST 方法:http://127.0.0.1:11112/api/ocr
请求参数
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
image_path | string | 是 | 图片地址, 支持本地路径和图片url,图片base64 |
返回参数
json
{
"code": 200,
"message": "success",
"data": {
"ocr_result": "OCR识别结果"
}
}
示例代码
python
import requests
headers = {
'accept': 'application/json',
'Content-Type': 'application/json',
}
json_data = {
'image_path': 'https://pic.dmjnb.com/pic/1a84d9868e1d84561ba665337068f32d?imageMogr2/thumbnail/x380/quality/90!',
}
response = requests.post('http://127.0.0.1:11112/api/ocr', headers=headers, json=json_data)
print(response.json())
bash
curl -X 'POST' \
'http://127.0.0.1:11112/api/ocr' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"image_path": "https://pic.dmjnb.com/pic/1a84d9868e1d84561ba665337068f32d?imageMogr2/thumbnail/x380/quality/90!"
}'