Heim >Backend-Entwicklung >PHP-Tutorial >php调用google接口生成二维码实例

php调用google接口生成二维码实例

WBOY
WBOYOriginal
2016-07-25 09:13:23832Durchsuche
例子,调用google接口来实现二维码。


  1. ?php
  2. $data = isset($_GET['t']) ? $_GET['t'] : 'http://www.XXX.com';
  3. $size = isset($_GET['size']) ? $_GET['size'] : '150x150';
  4. $logo = isset($_GET['logo']) ? $_GET['logo'] :"./image/logo.jpg";
  5. $chl = urlencode($logo);
  6. $png = "http://chart.googleapis.com/chart?chs=$size&cht=qr&chl=$chl&chld=L|1&choe=UTF-8";
  7. $QR = imagecreatefrompng($png);//外面那QR图
  8. //以下是二维码生成的主要代码
  9. if ($logo !== FALSE) {
  10. $logo = imagecreatefromstring(file_get_contents($logo));
  11. $QR_width = imagesx($QR);
  12. $QR_height = imagesy($QR);
  13. $logo_width = imagesx($logo);
  14. $logo_height = imagesy($logo);
  15. $logo_qr_width = $QR_width/5;
  16. $scale = $logo_width/$logo_qr_width;
  17. $logo_qr_height = $logo_height/$scale;
  18. $from_width = ($QR_width-$logo_qr_width)/2;
  19. imagecopyresampled($QR, $logo, $from_width, $from_width, 0, 0, $logo_qr_width, $logo_qr_height, $logo_width, $logo_height);
  20. }
  21. header('Content-type: image/png');
  22. imagepng($QR);
  23. //销毁二维码图像
  24. imagedestroy($QR);
  25. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn