当前位置:首页 > PHP教程 > php应用 > 列表

PHP下通过QRCode类库创建中间带网站LOGO的二维码

发布:smiling 来源: PHP粉丝网  添加日期:2021-03-20 15:54:20 浏览: 评论:0 

这篇文章主要介绍了用php中QRCode类库创建中间带LOGO的二维码,QRcode生成二维码的实例代码,有需要的朋友可以参考下

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

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

下载:

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

例子,使用PHP QR Code类库创建二维码。

1,浏览器输出:

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

2,文件输出二维码

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

3,生成中间带logo的二维码

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

 

Tags: QRCode PHP二维码

分享到:

相关文章