php產生二維碼的幾種方式

來源:互聯網
上載者:User

1.google開放api
$urlToEncode="http://bbs.lewanchina.com";
generateQRfromGoogle($urlToEncode);
function generateQRfromGoogle($chl,$widhtHeight ='150',$EC_level='L',$margin='0')
{
 $url = urlencode($url); 
 echo '<img src="http://chart.apis.google.com/chart?chs='.$widhtHeight.'x'.$widhtHeight.'&cht=qr&chld='.$EC_level.'|'.$margin.'&chl='.$chl.'" alt="QR code" widhtHeight="'.$size.'" widhtHeight="'.$size.'"/>';
}

 

2.php類庫PHP QR Code

PHP QR Code is open source (LGPL) library for generating QR Code, 
2-dimensional barcode. Based on libqrencode C library, 
provides API for creating QR Code barcode images (PNG, JPEG thanks to GD2).
Implemented purely in PHP, with no external dependencies (except GD2 if needed).

地址:http://phpqrcode.sourceforge.net/
下載:http://sourceforge.net/projects/phpqrcode/
執行個體:

<?
include "./phpqrcode/phpqrcode.php";
$value="http://www.weste.net";
$errorCorrectionLevel = "L";
$matrixPointSize = "4";
QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize);
exit;
?>

 

首頁地址:http://phpqrcode.sourceforge.net/,網站裡能直接下載源碼,下載後解壓到web目錄,通過網頁訪問,就可以看到demo示範。

QR碼

Data表示要記錄的資料,如果是儲存utf-8編碼的中文,最多984個。
ECC表示錯誤修正層級, 錯誤修正層級越高,產生圖片會越大。

L水平    7%的字碼可被修正M水平    15%的字碼可被修正Q水平    25%的字碼可被修正H水平    30%的字碼可被修正

Size表示圖片每個黑點的像素。

代碼的調用範例:

include "qrlib.php"; QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, $margin); /*    $data 資料    $filename 儲存的圖片名稱    $errorCorrectionLevel 錯誤處理層級    $matrixPointSize 每個黑點的像素    $margin 圖片外圍的白色邊框像素*/

QR碼詳細原理可以參考QR維基百科,中文版介紹比較少,英文版介紹很全面,推薦看英文版的。

另外,現在QR碼已經有彩色版的了,還可以嵌入個性圖片,我在這方面做了些研究, 如果有興趣,可以和我聯絡交流。我的聯絡郵箱參考網站右側邊欄目。

 

3.libqrencode

地址:http://fukuchi.org/works/qrencode/index.en.html
php支援請參考:http://hirokawa.netflowers.jp/entry/4900/

4.QRcode Perl CGI & PHP scripts 
地址:http://www.swetake.com/qr/qr_cgi.html

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.