PHP开发之基于phpqrcode生成带LOGO图像的二维码实例

xiaoxiao2021-02-27  294

PHPQRCode 是PHP用来处理二维条形码的开发包。基于C语言的 libqrencode 库开发,提供生成二维条形码功能,包括 PNG、JPG 格式。使用纯 PHP 实现,无需依赖第三方包,除了 GD2 除外。 本文实例讲述了PHP基于phpqrcode生成带LOGO图像的二维码。分享给大家供大家参考。具体如下:

这里PHP使用phpqrcode生成带LOGO图像的二维码,使用起来很方便,代码中含生成不带Logo的标准二维码和生成带Logo的二维码,可根据需要进行改进:

<?php include ('phpqrcode/phpqrcode.php'); createQR('http://www.discuz.ailab.cn/','ewm',''); echo "二维码已生成<img src=\"ewm.png\">" . "<br />"; function createQR($text,$imgName,$logo='',$errorCorrectionLevel = 'L',$matrixPointSize = 10){ QRcode::png ($text,$imgName.'.png',$errorCorrectionLevel,$matrixPointSize,2); if($logo){ $QR = imagecreatefromstring(file_get_contents($imgName.'.png')); $logo = imagecreatefromstring(file_get_contents($logo)); $QR_width = imagesx($QR); $QR_height = imagesy($QR); $logo_width = imagesx($logo); $logo_height = imagesy($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,$imgName.'.png' );//带Logo二维码 } } ?> 附phpqrcode类库下载地址: http://phpqrcode.sourceforge.net/

上面是国外的地址,有些网友访问不了,再附个下载地址:http://www.discuz.ailab.cn/gourl-12.html

转载请注明原文地址: https://www.6miu.com/read-3256.html

最新回复(0)