• TP5 生成二维码


    首先下载这个类:http://phpqrcode.sourceforge.net/

    把下载的文件放到vendor下面

    public function getWchatQrcode($users_id=1){ 
            //带LOGO
            // $url = 'http://mydd.0317cn.net/index.php/Home/Logo/res/users_id/'.$users_id; //二维码内容  
            // $errorCorrectionLevel = 'L';//容错级别  
            // $matrixPointSize = 9;//生成图片大小  
            // //生成二维码图片  
            // Vendor('phpqrcode.phpqrcode');
            // $object = new QRcode();
            // $ad = 'erweima/'.$users_id.'.jpg';
            // $object->png($url, $ad, $errorCorrectionLevel, $matrixPointSize, 2);  
            // $logo = 'erweima/2.jpg';//准备好的logo图片 
            // $QR = 'erweima/'.$users_id.'.jpg';//已经生成的原始二维码图  
    
            // if ($logo !== FALSE) {  
            //   $QR = imagecreatefromstring(file_get_contents($QR));  
            //   $logo = imagecreatefromstring(file_get_contents($logo));  
            //   $QR_width = imagesx($QR);//二维码图片宽度  
            //   $QR_height = imagesy($QR);//二维码图片高度  
            //   $logo_width = imagesx($logo);//logo图片宽度  
            //   $logo_height = imagesy($logo);//logo图片高度  
            //   $logo_qr_width = $QR_width / 5;  
            //   $scale = $logo_width/$logo_qr_width;  
            //   $logo_qr_height = $logo_height/$scale;  
            //   $from_width = ($QR_width - $logo_qr_width) / 2;  
            //   //重新组合图片并调整大小  
            //   imagecopyresampled($QR, $logo, $from_width, $from_width, 0, 0, $logo_qr_width,  
            //   $logo_qr_height, $logo_width, $logo_height);  
            // }
            //输出图片  带logo图片
            // imagepng($QR, 'erweima/'.$users_id.'.png'); 
            
    
            //不带LOGO
            Vendor('phpqrcode.phpqrcode');
            //生成二维码图片
            $object = new QRcode();
            $url='http://www.shouce.ren/';//网址或者是文本内容
            $level=3;
            $size=4;
            $ad = 'erweima/'.$users_id.'.jpg';
            $errorCorrectionLevel =intval($level) ;//容错级别
            $matrixPointSize = intval($size);//生成图片大小
            $object->png($url,  $ad, $errorCorrectionLevel, $matrixPointSize, 2);  
             
        }
  • 相关阅读:
    09课堂问题整理
    08课堂问题整理
    Eclipse开发工具的编码问题
    【伸手党】需要我帮你Google/百度吗?
    IDEA更改左侧目录层级结构
    IDEA设置类和方法的注释
    一篇系列
    "Notice: unserialize(): Error at offset xx of xxx bytes"错误的处理(转载)
    git push命令每次都要输入用户名和密码的问题处理
    在网站添加qq客服功能
  • 原文地址:https://www.cnblogs.com/huanghanyi/p/10751429.html
Copyright © 2020-2023  润新知