php利用PHP QR Code生成二维码(带logo)

我们要生成二维码都需要借助一些类库来实现了,下面我介绍利用PHP QR Code生成二维码吧,生成方法很简单,下面我来介绍一下.

利用php类库PHP QR Code来实现,不需要装额外的php扩展,首先下载类库包,有时候地址打不开,地址:http://phpqrcode.sourceforge.net/

下载:http://sourceforge.net/projects/phpqrcode/

使用时一般引入phpqrcode.php文件即可,具体使用方法举例,直接浏览器输出,代码如下:

  1. <?php
  2. include "phpqrcode/phpqrcode.php";
  3. $value="http://www.phpfensi.com";
  4. $errorCorrectionLevel = "L";
  5. $matrixPointSize = "4";
  6. QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize);
  7. exit;
  8. ?>

图片文件输出,代码如下:

  1. <?php
  2. //文件输出
  3. include('phpqrcode/phpqrcode.php');
  4. // 二维码数据
  5. $data = 'http://www.phpfensi.com';
  6. // 生成的文件名
  7. $filename = '1111.png';
  8. // 纠错级别:L、M、Q、H
  9. $errorCorrectionLevel = 'L';
  10. // 点的大小:1到10
  11. $matrixPointSize = 4;
  12. QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2);
  13. ?>

生成中间带logo的二维码,代码如下:

  1. <?php
  2. //生成中间带logo的二维码
  3. include('phpqrcode/phpqrcode.php');
  4. $value='http://www.phpfensi.com';
  5. $errorCorrectionLevel = 'L';
  6. $matrixPointSize = 10;
  7. QRcode::png($value, 'xiangyang.png', $errorCorrectionLevel, $matrixPointSize, 2);
  8. echo "QR code generated"."<br />";
  9. $logo = 'bdlogo.gif';
  10. $QR = 'xiangyang.png';
  11. if($logo !== FALSE)
  12. {
  13. $QR = imagecreatefromstring(file_get_contents($QR));
  14. $logo = imagecreatefromstring(file_get_contents($logo));
  15. $QR_width = imagesx($QR);
  16. $QR_height = imagesy($QR);
  17. $logo_width = imagesx($logo);
  18. $logo_height = imagesy($logo);
  19. $logo_qr_width = $QR_width / 5;
  20. $scale = $logo_width / $logo_qr_width;
  21. $logo_qr_height = $logo_height / $scale;
  22. $from_width = ($QR_width - $logo_qr_width) / 2;
  23. imagecopyresampled($QR, $logo, $from_width, $from_width, 0, 0, $logo_qr_width, $logo_qr_height, $logo_width, $logo_height);
  24. }
  25. imagepng($QR,'xiangyanglog.png');
  26. ?>