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