程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP5生成條形碼的簡單實例

PHP5生成條形碼的簡單實例

編輯:關於PHP編程

該軟件支持PHP4和PHP5兩個版本,本文中使用的是PHP5的版本。在使用前注意要將PHP的GD模塊開啟。在Windows中為php_gd2.dll,Linux中為gd.so。將壓縮文件解壓到Apache,執行http://localhost/barcode/index.php。PHP5生成條形碼見下圖:

1. Type:選擇條形碼類型

2. Output:輸出的圖片格式

3. Thickness:條形碼高度

4. Resolution:條形碼大小

5. Font:條形碼下方的文字大小,也可不顯示文字

6. Text:條形碼打印的內容

條碼效果

當然,這個PHP5生成條形碼程序只是將文字生成為條形碼,但使用時不能靈活將其嵌入其他PHP程序,我將壓縮包裡面的test.php做了一些調整,使其能靈活的用於其他程序。運行時只需將條碼類型和文字傳給test.php即可,例如:
http://localhost/barcode/test.php?codebar=BCGcode39&text=20090729

或運行 http://localhost/barcode/mytest.php

mytest.php代碼:

  1. <img src="test.php?codebar=BCGcode39&text=20090729"> 
PHP5生成條形碼效果圖:

運行實例效果圖

PHP5生成條形碼test.php代碼:

  1. <?php  
  2. // Including all required classes  
  3. require('class/BCGFont.php');  
  4. require('class/BCGColor.php');  
  5. require('class/BCGDrawing.php');  
  6. /*'BCGcodabar','BCGcode11','BCGcode39','BCGcode39extended','BCGcode93',  
  7. 'BCGcode128','BCGean8','BCGean13','BCGisbn','BCGi25','BCGs25','BCGmsi',  
  8. 'BCGupca','BCGupce','BCGupcext2','BCGupcext5','BCGpostnet','BCGothercode'*/ 
  9. $codebar = $_REQUEST['codebar']; //該軟件支持的所有編碼,只需調整$codebar參數即可。  
  10. // Including the barcode technology  
  11. include('class/'.$codebar.'.barcode.php');  
  12. // Loading Font  
  13. $font = new BCGFont('./class/font/Arial.ttf', 10);  
  14. // The arguments are R, G, B for color.  
  15. $color_black = new BCGColor(0, 0, 0);  
  16. $color_white = new BCGColor(255, 255, 255);  
  17. $code = new $codebar();  
  18. $code->setScale(2); // Resolution  
  19. $code->setThickness(30); // Thickness  
  20. $code->setForegroundColor($color_black); // Color of bars  
  21. $code->setBackgroundColor($color_white); // Color of spaces  
  22. $code->setFont($font); // Font (or 0)  
  23. $text = $_REQUEST['text']; //PHP5生成條形碼將要數據的內容  
  24. $code->parse($text);  
  25. /* Here is the list of the arguments  
  26. 1 - Filename (empty : display on screen)  
  27. 2 - Background color */ 
  28. $drawing = new BCGDrawing(''$color_white);  
  29. $drawing->setBarcode($code);  
  30. $drawing->draw();  
  31. // Header that says it is an image (remove it if you save the barcode to a file)  
  32. header('Content-Type: image/png');  
  33. // Draw (or save) the image into PNG format.  
  34. $drawing->finish(BCGDrawing::IMG_FORMAT_PNG);  
  35. ?> 
在運行過程中出現異常";
throw $e; //重擲異常
}
}
?﹥


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved