最新消息: 新版网站上线了!!!

php生成二维码并中间加logo保存到本地

 
  1. <?php 
  2. /** 
  3. @desc php生成二 维码码并中间加二维码
  4.  * Created by PhpStorm. 
  5.  * User: Administrator 
  6.  * Date: 2016/6/16 
  7.  * Time: 8:26 
  8.  */ 
  9. $data = isset($_GET['data']) ? $_GET['data'] : 'http://www.baidu.com'
  10. $url = "http://www.kuitao8.com/qr/view?qr=".$data
  11. function GetCurl($url){ 
  12.     $curl = curl_init(); 
  13.     curl_setopt($curl,CURLOPT_RETURNTRANSFER,1); 
  14.     curl_setopt($curl,CURLOPT_URL, $url); 
  15.     curl_setopt($curl,CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); 
  16.     $resp = curl_exec($curl); 
  17.     curl_close($curl); 
  18.     return $resp
  19. $content = GetCurl($url); 
  20. preg_match('/<img.+src=\"?(.+\.(jpg|gif|bmp|bnp|png|jpeg))\"?.+>/i',$content,$arr); 
  21. $imgFile = "http://www.kuitao8.com/".$arr[1]; 
  22. $size = isset($_GET['size']) ? $_GET['size'] : '200x200'
  23. $logo = isset($_GET['logo']) ? $_GET['logo'] : 'http://s2.static.img.lanrenchengxu.com/m/apple-touch-icon-114-precomposed.png'
  24. header('Content-type: image/png'); 
  25. $QR = imagecreatefrompng($imgFile); 
  26. if($logo !== FALSE){ 
  27.     $logo = imagecreatefromstring(file_get_contents($logo)); 
  28.     $QR_width = imagesx($QR); 
  29.     $QR_height = imagesy($QR); 
  30.     $logo_width = imagesx($logo); 
  31.     $logo_height = imagesy($logo); 
  32.     $logo_qr_width = $QR_width/3; 
  33.     $scale = $logo_width/$logo_qr_width
  34.     $logo_qr_height = $logo_height/$scale
  35.     imagecopyresampled($QR$logo$QR_width/3, $QR_height/3, 0, 0, $logo_qr_width$logo_qr_height$logo_width$logo_height); 
  36. imagepng($QR); 
  37. $save = "qr_local.png"
  38. imagepng($QR$save); 
  39. imagedestroy($QR); 

 

转载请注明:谷谷点程序 » php生成二维码并中间加logo保存到本地