首頁 > 軟體

php技術 生成二維條碼圖片程式碼

2019-11-30 13:57:24

我們可以看到到處是各種各樣的二維條碼圖片,甚至好多廣告上打出:掃一掃此二維條碼圖片有驚喜等活動;那麼此項技術利用php怎樣實現呢??

1

第一種方法:利用使用最廣泛,最方便的Google api技術實現;

2

<?php//1.封裝生成二維條碼圖片的函數(方法)?/**?*利用google api生成二維條碼圖片?* $content:二維條碼內容引數 ?* $size:生成二維條碼的尺寸,寬度和高度的值 ?* $lev:可選引數,糾錯等級 ?* $margin:生成的二維條碼離邊框的距離 ?*/function create_erweima($content, $size = '100', $lev = 'L', $margin= '0') {?? ?$content = urlencode($content);?$image = '<img src="http://chart.apis.google.com/chart?chs=
'.$size.'x'.$size.'&amp;cht=qr&chld='.$lev.'|'.$margin.'&amp;chl='.$content.'"? widht="'.$size.'" height="'.$size.'" />';??? return $image;}
="'.$size.'" />';??? return $image;}

3

/* * 使用注意事項 * 1.先構建內容字串 * 2.呼叫函數生成 */

//構建內容字串

$content="微信公眾平台:思維與邏輯rn公眾號:siweiyuluoji";

//呼叫函數生成二維條碼圖片

echo create_erweima($content);

//純文字型生成的圖片如下圖所示:


4

//把網址生成二維條碼;

$url="http://jingyan.baidu.com/article/0964eca23c39ce8285f5363c.html";

$url.="rn";

$url.="http://jingyan.baidu.com/article/03b2f78c4d28ae5ea237ae15.html";

echo create_erweima($url);

?>


5

上述範例程式碼下載地址:http://pan.baidu.com/s/1i3fyAWl


1

第二種方法使用php類庫PHP QR Code;下載地址:http://pan.baidu.com/s/1eQrFVUi ;或者在官網下載:http://phpqrcode.sourceforge.net

2

下載好解壓,然後將phpqrcode資料夾拷貝(或複製)到專案中去;


3

<?php

//引入核心庫檔案

include "phpqrcode/phpqrcode.php";

//定義糾錯級別

$errorLevel = "L";

//定義生成圖片寬度和高度;預設為3

$size = "4";

//定義生成內容

$content="微信公眾平台:思維與邏輯;公眾號:siweiyuluoji";

//呼叫QRcode類的靜態方法png生成二維條碼圖片//

QRcode::png($content, false, $errorLevel, $size);

//生成網址型別

$url="http://jingyan.baidu.com/article/48a42057bff0d2a925250464.html";

$url.="rn";

$url.="http://jingyan.baidu.com/article/acf728fd22fae8f8e510a3d6.html";

$url.="rn";

$url.="http://jingyan.baidu.com/article/92255446953d53851648f412.html";

QRcode::png($url, false, $errorLevel, $size);

//範例程式碼下載地址:http://pan.baidu.com/s/1kTyruRl

?>



IT145.com E-mail:sddin#qq.com