先安照路徑放好如圖。

簡單使用無logo:
public function qrcode(){
Vendor('phpqrcode.phpqrcode');
//生成二維碼圖片
$object = new \QRcode();
$url='http://www.shouce.ren/';//網址或者是文本內容
$level=3;
$size=4;
$errorCorrectionLevel =intval($level) ;//容錯級別
$matrixPointSize = intval($size);//生成圖片大小
$object->png($url, false, $errorCorrectionLevel, $matrixPointSize, 2);
}
高級使用帶logo:
public function qrcode(){
Vendor('phpqrcode.phpqrcode');
//生成二維碼圖片
$object = new \QRcode();
$qrcode_path='';
$file_tmp_name='';
$errors=array();
if(!empty($_POST)){
$content = trim($_POST['content']); //二維碼內容
$contentSize=$this->getStringLength($content);
if($contentSize>150){
$errors[]='字數過長,不能多於150個字符!';
}
if(isset($_FILES['upimage']['tmp_name']) && $_FILES['upimage']['tmp_name'] && is_uploaded_file($_FILES['upimage']['tmp_name'])){
if($_FILES['upimage']['size']>512000){
$errors[]="你上傳的文件過大,最大不能超過500K。";
}
$file_tmp_name=$_FILES['upimage']['tmp_name'];
$fileext = array("image/pjpeg","image/jpeg","image/gif","image/x-png","image/png");
if(!in_array($_FILES['upimage']['type'],$fileext)){
$errors[]="你上傳的文件格式不正確,僅支持 png, jpg, gif格式。";
}
}
$tpgs=$_POST['tpgs'];//圖片格式
$qrcode_bas_path='upload/qrcode/';
if(!is_dir($qrcode_bas_path)){
mkdir($qrcode_bas_path, 0777, true);
}
$uniqid_rand=date("Ymdhis").uniqid(). rand(1,1000);
$qrcode_path=$qrcode_bas_path.$uniqid_rand. "_1.".$tpgs;//原始圖片路徑
$qrcode_path_new=$qrcode_bas_path.$uniqid_rand."_2.".$tpgs;//二維碼圖片路徑
if(Helper::getOS()=='Linux'){
$mv = move_uploaded_file($file_tmp_name, $qrcode_path);
}else{
//解決windows下中文文件名亂碼的問題
$save_path = Helper::safeEncoding($qrcode_path,'GB2312');
if(!$save_path){
$errors[]='上傳失敗,請重試!';
}
$mv = move_uploaded_file($file_tmp_name, $qrcode_path);
}
if(empty($errors)){
$errorCorrectionLevel = $_POST['errorCorrectionLevel'];//容錯級別
$matrixPointSize = $_POST['matrixPointSize'];//生成圖片大小
$matrixMarginSize = $_POST['matrixMarginSize'];//邊距大小
//生成二維碼圖片
$object::png($content,$qrcode_path_new, $errorCorrectionLevel, $matrixPointSize, $matrixMarginSize);
$QR = $qrcode_path_new;//已經生成的原始二維碼圖
$logo = $qrcode_path;//准備好的logo圖片
if (file_exists($logo)) {
$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);
//輸出圖片
//header("Content-type: image/png");
imagepng($QR,$qrcode_path);
imagedestroy($QR);
}else{
$qrcode_path=$qrcode_path_new;
}
}else{
$qrcode_path='';
}
}
$data=array('data'=>array('errors'=>$errors,'qrcode_path'=>$qrcode_path));
$this->assign('data',$data);
$this->display();
演示地址:http://www.shouce.ren/tool/qrcode
用到助手類Helper地址:http://www.thinkphp.cn/topic/34875.html