自己剛開始嘗試,對大神來說可能入不了法眼,希望有用。
步驟:一、在網址http://phpqrcode.sourceforge.net/中下載phpqrcode.php文件,然後放到自己的項目中去;
二、編寫代碼並引入phpqrcode.php文件,實現生成二維碼。
代碼:
一、phpqrcode.php文件(下載即可)
二、測試代碼(erweima.app.php)
<?php
/*
* 生成二維碼
*/
class ErweimaApp extends ShoppingbaseApp{
function index()
{
$this->display('erweima.html');
}
/**
* @param string $chl 二維碼包含的信息,可以是數字、字符、二進制信息、漢字。
不能混合數據類型,數據必須經過UTF-8 URL-encoded
* @param int $widhtHeight 生成二維碼的尺寸設置
* @param string $EC_level 可選糾錯級別,QR碼支持四個等級糾錯,用來恢復丟失的、讀錯的、模糊的、數據。
* L-默認:可以識別已損失的7%的數據
* M-可以識別已損失15%的數據
* Q-可以識別已損失25%的數據
* H-可以識別已損失30%的數據
* @param int $margin 生成的二維碼離圖片邊框的距離
*/
function credit_qrcode()
{
include '/includes/libraries/phpqrcode.php';
$value = isset($_POST['url']) ? $_POST['url'] : 'http://www.baidu.com';
//上傳圖片
if (isset($_FILES['image']) && $_FILES['image']['error'] == 0 ){
$image = $this->_upload_file('image', 'erweima/', date('YmdHis') . mt_rand(1000, 9999), 'index.php?app=credit&act=credit_qrcode');
if ($image){
$logo = $image;
}
}
else
{
$logo = SITE_URL . '/themes/mall/default/styles/default/images/001.jpg';//准備好的logo圖片
}
$errorCorrectionLevel = 'H';//容錯級別
$matrixPointSize = 8;//生成圖片大小
//生成二維碼圖片
QRcode::png($value, 'qrcode.png', $errorCorrectionLevel, $matrixPointSize, 2);
$QR = '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);
}
//輸出圖片
imagepng($QR, 'helloweba.png');
echo '<img src="helloweba.png">';
}
/**
* 上傳文件
* @return mix false表示上傳失敗,空串表示沒有上傳,string表示上傳文件地址
* $file_name 為上傳文件name
* $path_name 為上傳路徑
* $save_name 為保存文件名
* $ret_url 為回調URL
**/
function _upload_file($file_name, $path_name, $save_name, $ret_url = 'index.php')
{
$file = $_FILES[$file_name];
$message = array(
'1' => '上傳的文件超過了 php.ini 中 upload_max_filesize 選項限制的值。',
'2' => '上傳文件的大小超過了 HTML 表單中 MAX_FILE_SIZE 選項指定的值。',
'3' => '文件只有部分被上傳。'
);
switch ($file['error'])
{
case UPLOAD_ERR_INI_SIZE:
case UPLOAD_ERR_FORM_SIZE:
case UPLOAD_ERR_PARTIAL:
if ($ret_url)
{
$this->show_warning($message[$file['error']], 'go_back');
return false;
}
else
{
return array('done' => FALSE, 'msg' => $message[$file['error']]);
}
break;
}
if ($file['error'] != UPLOAD_ERR_OK)
{
return '';
}
import('uploader.lib');
$uploader = new Uploader();
$uploader->allowed_type(IMAGE_FILE_TYPE);
$uploader->addFile($file);
if ($uploader->file_info() === false)
{
if ($ret_url)
{
$this->show_warning($uploader->get_error(), 'go_back', $ret_url);
return false;
}
else
{
return array('done' => FALSE, 'msg' => $uploader->get_error());
}
}
$uploader->root_dir(ROOT_PATH);
return $uploader->save('data/files/mall/'.$path_name, $save_name);
}
}
三、模板文件(erweima.html)
<div >
<form action="index.php?app=erweima&act=credit_qrcode" method="post" enctype="multipart/form-data">
請輸入網址:<input type="text" name="url" ><br />
圖片上傳:<input type="file" name="image"><br />
<input type="submit" name="sbt" value="提交">
</form>
</div>