本文实例讲述了PHP基于PHPqrcode生成带logo图像的二维码。分享给大家供大家参考。具体如下:
这里PHP使用PHPqrcode生成带logo图像的二维码,使用起来很方便,代码中含 生成不带logo的标准二维码和生成带logo的二维码,可根据注释修改使用。
PHP;">
PHP
include ('PHPqrcode.PHP');
$value = 'http://www.codesc.net';//二维码数据
$errorCorrectionLevel = 'L';//纠错级别:L、M、Q、H
$matrixPointSize = 10;//二维码点的大小:1到10
QRcode::png ( $value,'ewm.png',$errorCorrectionLevel,$matrixPointSize,2 );//不带logo二维码的文件名
echo "二维码已生成" . "
"; $logo = 'emwlogo.gif';//需要显示在二维码中的logo图像 $QR = 'ewm.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_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,$logo_qr_width,$logo_qr_height,$logo_width,$logo_height ); } imagepng ( $QR,'ewmlogo.png' );//带logo二维码的文件名 ?>
"; $logo = 'emwlogo.gif';//需要显示在二维码中的logo图像 $QR = 'ewm.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_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,$logo_qr_width,$logo_qr_height,$logo_width,$logo_height ); } imagepng ( $QR,'ewmlogo.png' );//带logo二维码的文件名 ?>
感兴趣的朋友还可参考本站二维码工具:
希望本文所述对大家的PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/21530.html