首页 图像识别 名片识别
名片识别

名片识别

  • 1275
  • 2211
可以识别图片中的名片信息,返回姓名、职务、手机、公司、地址、电话、传真、邮箱、网址、邮编等信息。
230.00/3000次
https://api.binstd.com/businesscardrecognition/recognize
JSON,JSONP
POST
https://api.binstd.com/businesscardrecognition/recognize?appkey=yourappkey&pic=POST上传文件

请求参数:

API在线测试
参数名称类型必填说明
pic file/string 名片图片文件 POST上传,支持传base64格式的图片内容 JPG识别率略高

返回参数:

参数名称类型说明
name string 姓名
position string 职位/部门
mobile string 手机
company string 公司名称
address string 地址
tel string 电话
fax string 传真
email string 邮箱
website string 网址
zipcode string 邮编

请求代码:

查看代码
<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$url = "https://api.binstd.com/businesscardrecognition/recognize?appkey=$appkey";
$post = array(
    'pic'=>curl_file_create(realpath('11.jpg')) //'@'.realpath('11.jpg')
);
$result = curlOpen($url, array('post'=>$post, 'isupfile'=>true));
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));

if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
foreach($result as $key=>$val)
{
    if(!is_array($val)) echo $key.':'.$val. '
'; else { foreach($val as $v) { echo $key.':'.$v.'
'; } } }

JSON返回示例 :

{
    "status": "0",
    "msg": "ok",
    "result": {
        "name": "王先生",
        "position": ["CEO"],
        "mobile": ["15888888888"],
        "company": ["杭州网尚科技有限公司"],
		"address": ["杭州市西湖区益乐路39号蓝海时代国际大厦15B03"],
		"tel": ["0571-56565366"],
		"fax": [],
		"email": ["kf@jisuapi.com"],
		"website": ["http://www.jisuapi.com"],
		"zipcode": "310012"
    }
}
                    

API错误码:

代号说明
201 图片为空
202 图片格式错误
208 识别失败
210 没有信息

系统错误码:

代号说明
101 APPKEY为空或不存在
102 APPKEY已过期
103 APPKEY无请求此数据权限
104 请求超过次数限制
105 IP被禁止
106 IP请求超过限制
107 接口维护中
108 接口已停用
名称权限价格
免费套餐 5次 免费
Level1 3000次 230.00元
Level2 5000次 375.00元
Level3 10000次 725.00元

活动推荐ACTIVITY 更多

  • orc活动

热门API接口推荐RECOMMENDED DATA 更多

开通BinSTD会员

开通账号:

×

会员类型:

  • 会员

会员时长:

  • 按年付

总金额:

  • ¥ 600.00元原价:900.00元
  • ¥ 300.00元原价:450.00元
  • ¥ 50.00元原价:75.00元
  • ¥ 100.00元原价:150.00元
  • ¥ 150.00元原价:225.00元
  • ¥ 200.00元原价:300.00元
  • ¥ 250.00元原价:375.00元