首页 娱乐购物 条码生成识别
条码生成识别

条码生成识别

  • 1162
  • 941
可以生成EAN13, EAN8, CODE11, CODE128, CODE39, CODE93, CODE3, GS1128, I25, ISBN, MSI, UPCA, UPCE, CODEBAR等各种条形码,并可以识别各种条形码。
850.00/50000次
申请就送100次
https://api.jisuapi.com/barcode/generate
JSON,JSONP
GET POST
https://api.jisuapi.com/barcode/generate?appkey=yourappkey&type=ean13&barcode=6901236341056&fontsize=12&dpi=72&scale=2&height=40

请求参数:

API在线测试
参数名称类型必填说明
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 "";

JSON返回示例 :

{
    "status": 0,
    "msg": "ok",
    "result": {
        "type": "BCGean13",
        "fontsize": "12",
        "dpi": "72",
        "scale": "2",
        "height": "40",
        "barcode": "iVBORw0KGgoAAAANSUhEUgAAAM0AAABgCAIAAAAxXGEOAAA"//base64
    }
}
                    

API错误码:

代号说明
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日。

活动推荐ACTIVITY 更多

  • orc活动

其它推荐RECOMMENDED DATA 更多