参数名称 | 类型 | 必填 | 说明 |
---|---|---|---|
type | string | 是 | 条码类型 |
barcode | string | 是 | 条码号 |
fontsize | string | 是 | 字号 |
dpi | string | 是 | DPI |
scale | string | 是 | 比例 |
height | string | 是 | 高度 |
参数名称 | 类型 | 说明 |
---|---|---|
type | string | 条码类型 EAN13, EAN8, CODE11, CODE128, CODE39, CODE93, CODE3, GS1128, I25, ISBN等 |
fontsize | string | 字号 |
dpi | string | DPI |
scale | string | 比例 |
height | string | 高度 |
barcode | string | 条码图片内容 base64编码 |
<?php require_once 'curl.func.php'; $appkey = 'your_appkey_here'; $type = 'ean13'; $barcode = '6901236341056'; $fontsize = 12; $dpi = 72; $scale = 2; $height = 40; $url = "https://api.jisuapi.com/barcode/generate?appkey=$appkey&type=$type&barcode=$barcode&fontsize=$fontsize&dpi=$dpi&scale=$scale&height=$height"; $result = curlOpen($url, ['ssl'=>true]); $jsonarr = json_decode($result, true); //exit(var_dump($jsonarr)); if($jsonarr['status'] != 0) { echo $jsonarr['msg']; exit(); } $result = $jsonarr['result']; $content = $result['barcode']; echo $result['code'].' '.$result['fontsize'].' '.$result['dpi'].' '.$result['scale'].' '.$result['height'].'
'; //file_put_contents('barcode.png', base64_decode($content)); echo "";
{ "status": 0, "msg": "ok", "result": { "type": "BCGean13", "fontsize": "12", "dpi": "72", "scale": "2", "height": "40", "barcode": "iVBORw0KGgoAAAANSUhEUgAAAM0AAABgCAIAAAAxXGEOAAA"//base64 } }
代号 | 说明 |
---|---|
201 | 条码类型不正确 |
202 | 条码号为空 |
203 | 条码不正确 |
206 | 条码地址不正确 |
210 | 没有信息 |
代号 | 说明 |
---|---|
101 | APPKEY为空或不存在 |
102 | APPKEY已过期 |
103 | APPKEY无请求此数据权限 |
104 | 请求超过次数限制 |
105 | IP被禁止 |
106 | IP请求超过限制 |
107 | 接口维护中 |
108 | 接口已停用 |
计次套餐 | 套餐规格 | 价格 | ||
---|---|---|---|---|
免费套餐 | 100次 | 0.00 元 | ≈0元/次 | |
Level3 | 50000次 | 850.00 元 | ≈0.017元/次 | |
Level4 | 100000次 | 1500.00 元 | ≈0.015元/次 | |
* 包月套餐和计次套餐不可同时购买,不可叠加使用。 |
包月套餐 | 套餐规格 | 价格 | ||
---|---|---|---|---|
Level1 特惠 | 1000次/天 | 57.50元 | ≈0.00192元/次 | |
Level2 | 3000次/天 | 305.00元 | ≈0.00339元/次 | |
Level3 | 6000次/天 | 572.50元 | ≈0.00318元/次 | |
Level4 | 10000次/天 | 880.00元 | ≈0.00293元/次 | |
* 套餐使用时限为订购之日起30日。 |