1. 下载phpqrcode.php
    2. 下载地址:http://files.cnblogs.com/files/qhorse/phpqrcode.rar
    3. <?php
    4. include 'phpqrcode.php';
    5. $value = 'https://www.baidu.com/'; //二维码内容
    6. $errorCorrectionLevel = 'L';//容错级别
    7. $matrixPointSize = 6;//生成图片大小
    8. //生成二维码图片
    9. QRcode::png($value, 'qrcode.png', $errorCorrectionLevel, $matrixPointSize, 2);
    10. //以上生成内容是 https://www.baidu.com 的二维码图片
    11. //如果需要给二维码加入logo,继续往下走
    12. $logo = 'logo.png';//准备好的logo图片
    13. $QR = 'qrcode.png';//已经生成的原始二维码图
    14. if ($logo !== FALSE) {
    15. $QR = imagecreatefromstring(file_get_contents($QR));
    16. $logo = imagecreatefromstring(file_get_contents($logo));
    17. $QR_width = imagesx($QR);//二维码图片宽度
    18. $QR_height = imagesy($QR);//二维码图片高度
    19. $logo_width = imagesx($logo);//logo图片宽度
    20. $logo_height = imagesy($logo);//logo图片高度
    21. $logo_qr_width = $QR_width / 5;
    22. $scale = $logo_width/$logo_qr_width;
    23. $logo_qr_height = $logo_height/$scale;
    24. $from_width = ($QR_width - $logo_qr_width) / 2;
    25. //重新组合图片并调整大小
    26. imagecopyresampled($QR, $logo, $from_width, $from_width, 0, 0, $logo_qr_width,
    27. $logo_qr_height, $logo_width, $logo_height);
    28. }
    29. //输出图片
    30. imagepng($QR, 'weixin.png');
    31. echo '<img src="weixin.png">';
    32. ?>