当前位置:首页 > PHP教程 > php高级应用 > 列表

php生成二维码实现代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-28 14:52:09 浏览: 评论:0 

二维码是二维条形码的一种,可以将网址、文字、照片等信息通过相应的编码算法编译成为一个方块形条码图案,手机用户可以通过摄像头和解码软件将相关信息重新解码并查看内容.

php类库PHP QR Code

两句话解释:# 包含qrlib.php的话需要同其它文件放到一起,文件、文件夹,phpqrcode.php是合并后版本,只需要包含这个文件,但生成的图片速度慢而且不太准确.

以下给出两种用法,代码如下:

  1. <?php  
  2.    include('./phpqrcode/phpqrcode.php');  
  3.    // 二维码数据  
  4.    $data = 'http://gz.altmi.com';  
  5.    // 生成的文件名  
  6.    $filename = $errorCorrectionLevel.'|'.$matrixPointSize.'.png';  
  7.    // 纠错级别:L、M、Q、H  
  8.    $errorCorrectionLevel = 'L';   
  9.    // 点的大小:1到10  
  10.    $matrixPointSize = 4;   
  11.    QRcode::png($data$filename$errorCorrectionLevel$matrixPointSize, 2); 
  12.  
  13. ?> 

# 创建一个二维码文件 

QRcode::png('code data text', 'filename.png'); // creates file 

# 生成图片到浏览器 

QRcode::png('some othertext 1234'); // creates code image and outputs it directly into browser

如果生成有色彩的需要自己动手修改phpqrcode.php中QRimage类的image方法中颜色设置部分的代码,1.1.4版本的代码在第987、988行,一个前景色,一个背景色,代码如下:

$col[0] = ImageColorAllocate($base_image,255,255,255);

$col[1] = ImageColorAllocate($base_image,0,0,0); 即可.

利用 google开放api生成,代码如下:

  1. $urlToEncode="http://gz.altmi.com";  
  2. generateQRfromGoogle($urlToEncode);  
  3. function generateQRfromGoogle($chl,$widhtHeight ='150',$EC_level='L',$margin='0'//开源代码phpfensi.com 
  4. {  
  5.     $url = urlencode($url);   
  6.     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.'"/>';  

Tags: php生成二维码 php二维码程序

分享到: