| 
 | 
 
 
            一、使用的类库 
1、phpqrcode(php库) 
2、qrcode.js(javascript库) 
二、phpqrcode的使用 
只用php的类库,也就是二维码的生成在后台操作。因为要在后台生成带logo的二维码,那么首先必须将logo图片上传至服务器(在上传这里我用了webuploader) 
phpqrcode使用方法: 
首先下载phpqrcode:http://phpqrcode.sourceforge.net/ 
然后在使用之前记得引入phpqrcode.php文件 
$value = $url;//二维码内容  
$errorCorrectionLevel = 'L';//设置容错级别  
$matrixPointSize = $size;//生成图片大小  
QRcode::png($value, 'public_files'.DIRECTORY_SEPARATOR .'code'.DIRECTORY_SEPARATOR .'qrcode.png', $errorCorrectionLevel, $matrixPointSize, 2);//生成二维码图片 无logo 
$logo = $tar_path;//上传至服务器的logo图片  
$QR = 'public_files'.DIRECTORY_SEPARATOR .'code'.DIRECTORY_SEPARATOR .'qrcode.png';//已经生成的原始二维码图 
  
if ($logo !== FALSE) { 
  $QR = imagecreatefromstring(file_get_contents($QR)); 
  $logo = imagecreatefromstring(file_get_contents($logo)); 
  $QR_width = imagesx($QR);//二维码图片宽度 
  $QR_height = imagesy($QR);//二维码图片高度 
  $logo_width = imagesx($logo);//logo图片宽度 
  $logo_height = imagesy($logo);//logo图片高度 
  $logo_qr_width = $QR_width / 5; 
  $scale = $logo_width/$logo_qr_width; 
  $logo_qr_height = $logo_height/$scale; 
  $from_width = ($QR_width - $logo_qr_width) / 2; 
  imagecopyresampled($QR, $logo, $from_width, $from_width, 0, 0, $logo_qr_width, 
    $logo_qr_height, $logo_width, $logo_height); 
} 
$name = time(); 
imagepng($QR, 'public_files'.DIRECTORY_SEPARATOR .'code'.DIRECTORY_SEPARATOR .$name.'.png');//输出带logo的二维码图片 
 |   
 
 
 
 |