VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP生成条形码实现程序

条形码(barcode)是将宽度不等的多个黑条和空白,按照一定的编码规则排列,用以表达一组信息的图形标识符,常见的条形码是由反射率相差很大的黑条(简称条)和白条(简称空)排成平行线的图案对于上面有个大概的了解后,下面我们可以重新整合下代码,更加方便的使用它,代码如下:

  1.  
  2.     
  3. function UPCAbarcode($code)  
  4. {  
  5.     $lw = 2; $hi = 100;  
  6.     $Lencode = array('0001101','0011001','0010011','0111101','0100011',  
  7.                     '0110001','0101111','0111011','0110111','0001011');  
  8.     $Rencode = array('1110010','1100110','1101100','1000010','1011100',  
  9.                     '1001110','1010000','1000100','1001000','1110100');  
  10.     $ends = '101'$center = '01010';  
  11.     
  12.     /* UPC-A Must be 11 digits, we compute the checksum. */ 
  13.     if ( strlen($code) != 11 ) { die("UPC-A Must be 11 digits."); }  
  14.     
  15.     /* Compute the EAN-13 Checksum digit */ 
  16.     $ncode = '0'.$code;  
  17.     $even = 0; $odd = 0;  
  18.     for ($x=0;$x<12;$x++)  
  19.     {  
  20.         if ($x % 2) { $odd += $ncode[$x]; } else { $even += $ncode[$x]; }  
  21.     }  
  22.     
  23.     $code.=(10 - (($odd * 3 + $even) % 10)) % 10;  
  24.     
  25.     /* Create the bar encoding using a binary string */ 
  26.     $bars=$ends;  
  27.     $bars.=$Lencode[$code[0]];  
  28.     for($x=1;$x<6;$x++)  
  29.     {  
  30.         $bars.=$Lencode[$code[$x]];  
  31.     }  
  32.     
  33.     $bars.=$center;  
  34.     
  35.     for($x=6;$x<12;$x++)  
  36.     {  
  37.         $bars.=$Rencode[$code[$x]];  
  38.     }  
  39.     
  40.     $bars.=$ends;  
  41.     
  42.     /* Generate the Barcode Image */ 
  43.     $img = ImageCreate($lw*95+30,$hi+30);  
  44.     $fg = ImageColorAllocate($img, 0, 0, 0);  
  45.     $bg = ImageColorAllocate($img, 255, 255, 255);  
  46.     ImageFilledRectangle($img, 0, 0, $lw*95+30, $hi+30, $bg);  
  47.     
  48.     $shift=10;  
  49.     
  50.     for ($x=0;$x<strlen($bars);$x++)  
  51.     {  
  52.         if (($x<10) || ($x>=45 && $x<50) || ($x >=85)) { $sh=10; } else { $sh=0; }  
  53.         if ($bars[$x] == '1') { $color = $fg; } else { $color = $bg; }  
  54.         ImageFilledRectangle($img, ($x*$lw)+15,5,($x+1)*$lw+14,$hi+5+$sh,$color);  
  55.     }  
  56.     
  57.     /* Add the Human Readable Label */ 
  58.     ImageString($img,4,5,$hi-5,$code[0],$fg);  
  59.     
  60.     for ($x=0;$x<5;$x++)  
  61.     {  
  62.         ImageString($img,5,$lw*(13+$x*6)+15,$hi+5,$code[$x+1],$fg);  
  63.         ImageString($img,5,$lw*(53+$x*6)+15,$hi+5,$code[$x+6],$fg);  
  64.     }  
  65.     
  66.     ImageString($img,4,$lw*95+17,$hi-5,$code[11],$fg);  
  67.     
  68.     /* Output the Header and Content. */ 
  69.     header("Content-Type: image/png");  
  70.     ImagePNG($img);  
  71.     
  72. }  
  73.     
  74. UPCAbarcode('13322483157');  
  75.     
  76. ?> 
  77.  

出处:http://www.phpfensi.com/php/20140106/1079.html


相关教程