php生成EAN_13标准条形码实例


Posted in PHP onNovember 13, 2013

下面的就是生成EAN_13标准的条码的PHP方法,需要php+gd 环境 
  

<? 
function EAN_13($code) { 
  //一个单元的宽度 
  $lw = 2; 
  //条码高  
  $hi = 100; 
  // the guide code is no coding,is used to show the left part coding type// 
  // Array guide is used to record the EAN_13 is left part coding type// 
  $Guide = array(1=>'AAAAAA','AABABB','AABBAB','ABAABB','ABBAAB','ABBBAA','ABABAB','ABABBA','ABBABA'); 
  $Lstart ='101'; 
  $Lencode = array("A" => array('0001101','0011001','0010011','0111101','0100011','0110001','0101111','0111011','0110111','0001011'), 
                   "B" => array('0100111','0110011','0011011','0100001','0011101','0111001','0000101','0010001','0001001','0010111')); 
  $Rencode = array('1110010','1100110','1101100','1000010','1011100', 
                   '1001110','1010000','1000100','1001000','1110100');       $center = '01010'; 
  $ends = '101'; 
  if ( strlen($code) != 13 ) 
   { die("UPC-A Must be 13 digits."); } 
$lsum =0; 
$rsum =0; 
  for($i=0;$i<(strlen($code)-1);$i++) 
  { 
    if($i % 2) 
{ 
 // $odd += $ncode[$x] 
  $lsum +=(int)$code[$i]; 
 }else{ 
  $rsum +=(int)$code[$i]; 
 } 
  } 
  $tsum = $lsum*3 + $rsum; 
    if($code[12] != (10-($tsum % 10))) 
{ 
   die("the code is bad!"); 
    }  

 // echo $Guide[$code[0]]; 
  $barcode = $Lstart; 
  for($i=1;$i<=6;$i++) 
  { 
    $barcode .= $Lencode [$Guide[$code[0]][($i-1)]] [$code[$i]]; 
  } 
  $barcode .= $center; 
  for($i=7;$i<13;$i++) 
  { 
    $barcode .= $Rencode[$code[($i)]] ; 
  } 
  $barcode .= $ends; 
    $img = ImageCreate($lw*95+60,$hi+30); 
  $fg = ImageColorAllocate($img, 0, 0, 0); 
  $bg = ImageColorAllocate($img, 255, 255, 255); 
  ImageFilledRectangle($img, 0, 0, $lw*95+60, $hi+30, $bg); 
  $shift=10; 
  for ($x=0;$x<strlen($barcode);$x++) { 
    if (($x<4) || ($x>=45 && $x<50) || ($x >=92))  
  {  
    $sh=10;  
  } else {  
    $sh=0;  
  } 
    if ($barcode[$x] == '1')  
{  
  $color = $fg; 
    } else {  
  $color = $bg;  
} 
    ImageFilledRectangle($img, ($x*$lw)+30,5,($x+1)*$lw+29,$hi+5+$sh,$color); 
  } 
  /* Add the Human Readable Label */ 
  ImageString($img,5,20,$hi+5,$code[0],$fg); 
  for ($x=0;$x<6;$x++) { 
    ImageString($img,5,$lw*(8+$x*6)+30,$hi+5,$code[$x+1],$fg); 
    ImageString($img,5,$lw*(53+$x*6)+30,$hi+5,$code[$x+7],$fg); 
  } 
 // ImageString($img,4,$lw*95+17,$hi-5,$code[12],$fg); 
  /* Output the Header and Content. */ 
  header("Content-Type: image/png"); 
  ImagePNG($img); 
} 
EAN_13('6901028055048'); 
?> 
PHP 相关文章推荐
NO3第三帝国留言簿制作过程
Oct 09 PHP
php str_pad 函数用法简介
Jul 11 PHP
超级实用的7个PHP代码片段分享
Jan 05 PHP
php中的strpos使用示例
Feb 27 PHP
PHP判断指定时间段的2个方法
Mar 14 PHP
Yii配置文件用法详解
Dec 04 PHP
PHP文件操作详解
Dec 30 PHP
PHP中phar包的使用教程
Jun 14 PHP
PHP实现时间比较和时间差计算的方法示例
Jul 24 PHP
PHP 中 var_export、print_r、var_dump 调试中的区别
Jun 19 PHP
php精度计算的问题解析
Jun 21 PHP
详解Go与PHP的语法对比
May 29 PHP
使用php计算排列组合的方法
Nov 13 #PHP
测试php函数的方法
Nov 13 #PHP
PHP中判断变量为空的几种方法小结
Nov 12 #PHP
php不允许用户提交空表单(php空值判断)
Nov 12 #PHP
php5.3 不支持 session_register() 此函数已启用的解决方法
Nov 12 #PHP
session在php5.3中的变化 session_is_registered() is deprecated in
Nov 12 #PHP
PHP使用正则表达式清除超链接文本
Nov 12 #PHP
You might like
php中DOMDocument简单用法示例代码(XML创建、添加、删除、修改)
2010/12/19 PHP
php传值方式和ajax的验证功能
2017/03/27 PHP
PHP jpgraph库的配置及生成统计图表:折线图、柱状图、饼状图
2017/05/15 PHP
PHP实现微信对账单处理
2018/10/01 PHP
javascript实现tabs选项卡切换效果(自写原生js)
2013/03/19 Javascript
javascript随机将第一个dom中的图片添加到第二个div中示例
2013/10/08 Javascript
js + css实现标签内容切换功能(实例讲解)
2017/10/09 Javascript
express.js中间件说明详解
2019/03/19 Javascript
Object.keys() 和 Object.getOwnPropertyNames() 的区别详解
2020/05/21 Javascript
vue print.js打印支持Echarts图表操作
2020/11/13 Javascript
Python修改Excel数据的实例代码
2013/11/01 Python
Python实现配置文件备份的方法
2015/07/30 Python
pandas获取groupby分组里最大值所在的行方法
2018/04/20 Python
PyTorch CNN实战之MNIST手写数字识别示例
2018/05/29 Python
Python minidom模块用法示例【DOM写入和解析XML】
2019/03/25 Python
扩展Django admin的list_filter()可使用范围方法
2019/08/21 Python
windows下Python安装、使用教程和Notepad++的使用教程
2019/10/06 Python
Python 日期时间datetime 加一天,减一天,加减一小时一分钟,加减一年
2020/04/16 Python
Python计算信息熵实例
2020/06/18 Python
python中requests模拟登录的三种方式(携带cookie/session进行请求网站)
2020/11/17 Python
Python图像处理之膨胀与腐蚀的操作
2021/02/07 Python
美国最大的宠物用品零售商:PetSmart
2016/11/14 全球购物
ellesse美国官方商店:意大利高级运动服品牌
2019/10/29 全球购物
应届生程序员求职信
2013/11/05 职场文书
三年级班级文化建设方案
2014/05/04 职场文书
技术比武方案
2014/05/19 职场文书
中秋节国旗下演讲稿
2014/09/13 职场文书
个人三严三实对照检查材料思想汇报
2014/09/22 职场文书
小学教师师德整改措施
2014/09/29 职场文书
毕业论文指导教师评语
2014/12/30 职场文书
职代会闭幕词
2015/01/28 职场文书
继续教育个人总结
2015/03/03 职场文书
2015年教学副校长工作总结
2015/07/22 职场文书
原来闭幕词是这样写的呀!
2019/07/01 职场文书
用Python的绘图库(matplotlib)绘制小波能量谱
2021/04/17 Python
python实现简单的聊天小程序
2021/07/07 Python