91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP5怎么生成條形碼

發布時間:2021-07-15 11:54:38 來源:億速云 閱讀:158 作者:chen 欄目:編程語言

本篇內容主要講解“PHP5怎么生成條形碼”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“PHP5怎么生成條形碼”吧!

該軟件支持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怎么生成條形碼

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

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

mytest.php代碼:

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

PHP5怎么生成條形碼

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

<?php  // Including all required classes  require('class/BCGFont.php');  require('class/BCGColor.php');  require('class/BCGDrawing.php');  /*'BCGcodabar','BCGcode11','BCGcode39','BCGcode39extended','BCGcode93',  'BCGcode128','BCGean8','BCGean13','BCGisbn','BCGi25','BCGs25','BCGmsi',  'BCGupca','BCGupce','BCGupcext2','BCGupcext5','BCGpostnet','BCGothercode'*/ $codebar = $_REQUEST['codebar']; //該軟件支持的所有編碼,只需調整$codebar參數即可。  // Including the barcode technology  include('class/'.$codebar.'.barcode.php');  // Loading Font  $font = new BCGFont('./class/font/Arial.ttf', 10);  // The arguments are R, G, B for color.  $color_black = new BCGColor(0, 0, 0);  $color_white = new BCGColor(255, 255, 255);  $code = new $codebar();  $code->setScale(2); // Resolution  $code->setThickness(30); // Thickness  $code->setForegroundColor($color_black); // Color of bars  $code->setBackgroundColor($color_white); // Color of spaces  $code->setFont($font); // Font (or 0)  $text = $_REQUEST['text']; //PHP5生成條形碼將要數據的內容  $code->parse($text);  /* Here is the list of the arguments  1 - Filename (empty : display on screen)  2 - Background color */ $drawing = new BCGDrawing('', $color_white);  $drawing->setBarcode($code);  $drawing->draw();  // Header that says it is an image (remove it if you save the barcode to a file)  header('Content-Type: image/png');  // Draw (or save) the image into PNG format.  $drawing->finish(BCGDrawing::IMG_FORMAT_PNG);  ?>

到此,相信大家對“PHP5怎么生成條形碼”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

同江市| 舞钢市| 津市市| 武川县| 温宿县| 田林县| 金乡县| 阿尔山市| 通州市| 本溪| 上犹县| 中西区| 湖北省| 通道| 安溪县| 林周县| 枣强县| 梁山县| 隆安县| 梧州市| 威远县| 马龙县| 镇雄县| 韶关市| 遂溪县| 乌兰察布市| 徐州市| 阿鲁科尔沁旗| 东阳市| 哈尔滨市| 扶沟县| 于田县| 陇西县| 恩平市| 吴桥县| 巧家县| 鄂尔多斯市| 华阴市| 内乡县| 和静县| 霸州市|