产品详情
API参数 OCR通用文字识别标准版 调用地址: http,https://bdycharacterrecognition.api.bdymkt.com/ocr/general-basic 请求方式: POST 支持格式: application/x-www-form-urlencoded 调用工具: 去调试 请求参数(Headers) 请求参数(Query) 请求参数(Body)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- image
- string
- true
- https://apisown-test.bj.bcebos.com/general-basic.jpg
- 图像数据,包括如下2种形式: base64编码后进行urlencode; 图片完整url,url长度不超过1024字节,需要关闭防盗链。 以上2种图片说明: 最短边至少15px,最长边最大4096px; 格式为 jpg/jpeg/png/bmp 4种格式之一。
- imageType
- string
- true
- 1
- 图像数据类型,0表示base64编码,1表示url链接
- language
- string
- false
- CHN_ENG
- 识别语言类型,默认为CHN_ENG 可选值包括: - CHN_ENG:中英文混合 - ENG:英文 - JAP:日语 - KOR:韩语 - FRE:法语 - SPA:西班牙语 - POR:葡萄牙语 - GER:德语 - ITA:意大利语 - RUS:俄语
<dependency>
<groupId>com.baidubce</groupId>
<artifactId>api-explorer-sdk</artifactId>
<version>1.0.0</version>
</dependency>
import com.baidubce.http.ApiExplorerClient;
import com.baidubce.http.AppSigner;
import com.baidubce.http.HttpMethodName;
import com.baidubce.model.ApiExplorerRequest;
import com.baidubce.model.ApiExplorerResponse;
// OCR通用文字识别标准版 Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "http://bdycharacterrecognition.api.bdymkt.com/ocr/general-basic";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/x-www-form-urlencoded");
String requestExample = "imageType=1&image=https:\/\/apisown-test.bj.bcebos.com\/general-basic.jpg";
request.setJsonBody(requestExample);
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 失败返回示例 错误码定义
