按功能或类创建QR码

时间:2015-03-13 15:26:02

标签: php function qr-code

我正在使用Google API的QRCode,我把这段代码放在了函数中。

现在我想要显示两个图像,例如:两个不同大小或数据的图像!

如果你使用类或函数没关系,我只想在页面上获得不同的输出。

这是代码:

<?php
function CreateQRCode($data, $size, $logo) {
header('Content-type: image/png');
// Get QR Code image from Google Chart API
// http://code.google.com/apis/chart/infographics/docs/qr_codes.html
$QR = imagecreatefrompng('https://chart.googleapis.com/chart?cht=qr&chld=H|1&chs='.$size.'&chl='.urlencode($data));
if($logo !== FALSE){
$logo = imagecreatefromstring(file_get_contents($logo));
$QR_width = imagesx($QR);
$QR_height = imagesy($QR);
$logo_width = imagesx($logo);
$logo_height = imagesy($logo);
// Scale logo to fit in the QR Code
$logo_qr_width = $QR_width/3;
$scale = $logo_width/$logo_qr_width;
$logo_qr_height = $logo_height/$scale;
imagecopyresampled($QR, $logo, $QR_width/3, $QR_height/3, 0, 0, $logo_qr_width, $logo_qr_height, $logo_width, $logo_height);
}

imagepng($QR);
imagedestroy($QR);

}

 CreateQRCode('http://google.com', '200x200', FALSE);
?>

像这样:

example 2 example 1

0 个答案:

没有答案