PHP7中文手册2018 带注释 最新chm版
- <?php
- /**
- @desc php生成二 维码码并中间加二维码
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2016/6/16
- * Time: 8:26
- */
- $data = isset($_GET['data']) ? $_GET['data'] : 'http://www.baidu.com';
- $url = "http://www.kuitao8.com/qr/view?qr=".$data;
- function GetCurl($url){
- $curl = curl_init();
- curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
- curl_setopt($curl,CURLOPT_URL, $url);
- curl_setopt($curl,CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
- $resp = curl_exec($curl);
- curl_close($curl);
- return $resp;
- }
- $content = GetCurl($url);
- preg_match('/<img.+src=\"?(.+\.(jpg|gif|bmp|bnp|png|jpeg))\"?.+>/i',$content,$arr);
- $imgFile = "http://www.kuitao8.com/".$arr[1];
- $size = isset($_GET['size']) ? $_GET['size'] : '200x200';
- $logo = isset($_GET['logo']) ? $_GET['logo'] : 'http://s2.static.img.lanrenchengxu.com/m/apple-touch-icon-114-precomposed.png';
- header('Content-type: image/png');
- $QR = imagecreatefrompng($imgFile);
- if($logo !== FALSE){
- $logo = imagecreatefromstring(file_get_contents($logo));
- $QR_width = imagesx($QR);
- $QR_height = imagesy($QR);
- $logo_width = imagesx($logo);
- $logo_height = imagesy($logo);
- $logo_qr_width = $QR_width/3;
- $scale = $logo_width/$logo_qr_width;
- $logo_qr_height = $logo_height/$scale;
- imagecopyresampled($QR, $logo, $QR_width/3, $QR_height/3, 0, 0, $logo_qr_width, $logo_qr_height, $logo_width, $logo_height);
- }
- imagepng($QR);
- $save = "qr_local.png";
- imagepng($QR, $save);
- imagedestroy($QR);
转载请注明:谷谷点程序 » php生成二维码并中间加logo保存到本地