uni-app+php 生成微信二维码 分销海报

主要代码如下,可直接复制调试参数:

 //查询当前用户是否有分销海报public function user_poster(){$this->checkAuth();//查询会员信息$user = $this->getUserInfoById($this->user_id);if(!empty($user['distribution_img'])){$result['data'] = $user['distribution_img'];}else{$result = $this->getDistributorImg();}$this->success("请求成功!", $result);}//获取小程序分享二维码--分销海报public function getDistributorImg(){try{//查询会员信息$userinfo = $this->getUserInfoById($this->user_id);$url = $this->request->get('url');$save_dir = 'upload/qr_code/user_share/';$save_key = 'uid'.$userinfo['id'];$img_src = md5($save_key) . '.png';$poster_config = $this->userShareConfig();$poster_url = root_path().'public/'.$save_dir . $img_src;//生成小程序二维码$res = $this->makeUserMnpQrcode($userinfo,$save_key,$img_src);if(true !== $res){return ['status' => 0, 'msg' => '微信配置错误:'.$res, 'data' => ''];}$background_img = root_path().'public/images/share_user_bg.png';$user_avatar =  root_path().'public/images/default_logo.jpg';$qr_code_logic = new MemberController();//获取背景图$share_background_img = imagecreatefromstring(file_get_contents($background_img));//合成头像$qr_code_logic->writeImg($share_background_img, $user_avatar, $poster_config['head_pic'],true);//合成昵称$nickname = self::filterEmoji($userinfo['nickname']);$qr_code_logic->writeText($share_background_img, $nickname, $poster_config['nickname']);//长按识别$notice = '长按识别二维码 >>';$qr_code_logic->writeText($share_background_img, $notice, $poster_config['notice']);//合成商品标题$title = self::auto_adapt($poster_config['title']['font_size'], 0, $poster_config['title']['font_face'], '邀请你一起来赚大钱', $poster_config['title']['w'],$poster_config['title']['y'],getimagesize($background_img));$qr_code_logic->writeText($share_background_img, $title, $poster_config['title']);//邀请码$qr_code_logic->writeText($share_background_img, '邀请码 '.$userinfo['distribution_code'], $poster_config['code_text']);//合成二维码$qr_code_logic->writeImg($share_background_img, $poster_url, $poster_config['qr'],false);imagepng($share_background_img, $poster_url);$file_name = 'public/'.$save_dir . $img_src;$result['data'] = $file_name;$dis_oss_img = $this->local_upload($result['data']);//更新会员分销海报信息$dis_oss_img = cmf_get_asset_url($dis_oss_img);$this->up_member(['distribution_img' => $dis_oss_img]);//上传oss$result['data'] = $dis_oss_img;return $result;}catch(Exception $e){return ['status' => 0, 'msg' => $e->getMessage(), 'data' => ''];}}public function up_member($params){$this->checkAuth();$this->MemberModel = new MemberModel();$params['update_time'] = time();$member                = $this->getUserInfoByOpenid($this->openid);if (empty($member)) $this->error("该会员不存在!");$result = $this->MemberModel->where('id', $member['id'])->strict(false)->update($params);if ($result) {$result = $this->getUserInfoById($this->user_id);return true;} else {return false;}}

需要引用的方法

/** 生成海报自动适应标题*/
public function auto_adapt($size, $angle = 0, $fontfile, $string, $width, $height, $bg_height)
{$content = "";// 将字符串拆分成一个个单字 保存到数组 letter 中for ($i = 0; $i < mb_strlen($string); $i++) {$letters[] = mb_substr($string, $i, 1);}foreach ($letters as $letter) {$str = $content . " " . $letter;$box = imagettfbbox($size, $angle, $fontfile, $str);$total_height = $box[1] + $height;if ($bg_height[1] - $total_height < $size) {break;}//右下角X位置,判断拼接后的字符串是否超过预设的宽度if (($box[2] > $width) && ($content !== "")) {if ($bg_height[1] - $total_height < $size * 2) {break;}$content .= "\n";}$content .= $letter;}return $content;
}//写入文字public function writeText($poster, $text, $config){$font_uri = $config['font_face'];$font_size = $config['font_size'];$color = substr($config['color'],1);//颜色转换$color= str_split($color, 2);$color = array_map('hexdec', $color);if (empty($color[3]) || $color[3] > 127) {$color[3] = 0;}//写入文字$font_col = imagecolorallocatealpha($poster, $color[0], $color[1], $color[2], $color[3]);imagettftext($poster, $font_size,0, $config['x'], $config['y'], $font_col, $font_uri, $text);return $poster;}
/*** Notes:去掉名称中的表情* @param $str* @return string|string[]|null* @author: cjhao 2021/3/29 15:56*/
public function filterEmoji($str)
{$str = preg_replace_callback('/./u',function (array $match) {return strlen($match[0]) >= 4 ? '' : $match[0];},$str);return $str;
}public function makeUserMnpQrcode($userinfo,$save_key,$img_src) {try {$config = cmf_get_option('weipay');$wechatC['app_id'] = $config['wx_mini_app_id'];$wechatC['secret'] = $config['wx_mini_app_secret'];$app = Factory::miniProgram($wechatC);$code = $userinfo['distribution_code']; //邀请码$response = $app->app_code->get('pages/index/index'.'?invite_code='.$code, ['width' => 170,]);if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {$response->saveAs('upload/qr_code/user_share/', $img_src);return true;}if(isset($response['errcode']) && 41030 === $response['errcode']){return '商城小程序码,先提交审核并通过';}return $response['errmsg'];} catch (\EasyWeChat\Kernel\Exceptions\Exception $e){return $e->getMessage();}}//写入图片public function writeImg($poster, $img_uri, $config, $is_rounded = false){$pic_img = imagecreatefromstring(file_get_contents($img_uri));$is_rounded?$pic_img = self::rounded_corner($pic_img):'';//切成圆角返回头像资源$pic_w = imagesx($pic_img);$pic_h = imagesy($pic_img);//圆形头像大图合并到海报imagecopyresampled($poster, $pic_img,$config['x'],$config['y'],0, 0,$config['w'],$config['h'],$pic_w,$pic_h);return $poster;}/*** 将图片切成圆角*/
public function rounded_corner($src_img)
{$w = imagesx($src_img);//微信头像宽度 正方形的$h = imagesy($src_img);//微信头像宽度 正方形的$w = min($w, $h);$h = $w;$img = imagecreatetruecolor($w, $h);//这一句一定要有imagesavealpha($img, true);//拾取一个完全透明的颜色,最后一个参数127为全透明$bg = imagecolorallocatealpha($img, 255, 255, 255, 127);imagefill($img, 0, 0, $bg);$r = $w / 2; //圆半径
//    $y_x = $r; //圆心X坐标
//    $y_y = $r; //圆心Y坐标for ($x = 0; $x < $w; $x++) {for ($y = 0; $y < $h; $y++) {$rgbColor = imagecolorat($src_img, $x, $y);if (((($x - $r) * ($x - $r) + ($y - $r) * ($y - $r)) < ($r * $r))) {imagesetpixel($img, $x, $y, $rgbColor);}}}unset($src_img);return $img;
}//用户图片配置public function userShareConfig(){return [//会员头像'head_pic' => ['w' => 80, 'h' => 80, 'x' => 30, 'y' => 680,],//会员昵称'nickname' => ['color' => '#333333', 'font_face' => root_path().'public/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'x' => 120, 'y' => 730,],//标题'title' => ['color' => '#333333', 'font_face' => root_path().'public/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'w' => 360, 'x' => 30, 'y' => 810,],//提醒长按扫码'notice' => ['color' => '#333333', 'font_face' => root_path().'public/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'x' => 30, 'y' => 880,],//邀请码文本'code_text' => ['color' => '#FF2C3C', 'font_face' => root_path().'public/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'x' => 355, 'y' => 930,],//二维码'qr' => ['w' => 170,'h' => 170, 'x' => 370, 'y' => 730,],];}

最终效果:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/19784.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Goby 漏洞发布|万户ezEIP企业管理系统 /member/success.aspx 命令执行漏洞

漏洞名称&#xff1a;万户ezEIP企业管理系统 /member/success.aspx 命令执行漏洞 English Name&#xff1a;Wanhu-ez-EIP /member/success.aspx Command Execution Vulnerability CVSS core: 9.0 影响资产数&#xff1a;6175 漏洞描述&#xff1a; 万户ezEIP是一种企业资源…

在CentOS7下构建TeamSpeak服务器并增加网易云点歌插件

文章目录 部署TeamSpeak创建一个新用户下载并解压服务端下载解压 启动服务端同意许可协议启动与配置开放端口设置开机自启 客户端连接 部署TS3AudioBot并添加网易云插件安装ffmpeg下载TS3AudioBot本体与插件并解压配置TS3AudioBot启动设置开机自启 部署网易云API安装git安装Nod…

解读vue3源码-2

提示&#xff1a;看到我 请让滚去学习 vue3编译模版的提升 文章目录 vue3编译模版的提升静态节点提升补丁标志和block的使用附录&#xff1a; template explorer可以将我们的源模版转化成渲染函数代码&#xff0c;vue2中就有&#xff0c;而Vue3 template explorer 功能更加丰富…

外汇天眼:ESMA发布针对在投资服务中使用人工智能的公司的指导意见

欧洲证券和市场管理局&#xff08;ESMA&#xff09;&#xff0c;欧盟的金融市场监管机构和监督机构&#xff0c;发布了一份声明&#xff0c;为在向零售客户提供投资服务时使用人工智能技术&#xff08;AI&#xff09;的公司提供初步指导。 尽管人工智能的普及仍处于初期阶段&am…

你认识nginx吗,nginx是做什么的,nginx可以做什么 --2)nginx配置

hello大家今天教大家如何用nginx实验tomcat的负载均衡&#xff0c;同理其他的也可以&#xff0c;如httpd等 首先需要准备一个nginx和tomcat包&#xff0c;这里用到的是版本号为 然后需要准备最少三台linux虚拟机&#xff0c;然后我们开始吧 1.安装tomcat 解包 tar zxf /mnt/…

学习 SSH Key 生成方法

SSH Key 是用于身份验证的一对密钥&#xff0c;包括公钥和私钥。公钥可以放在需要访问的服务器上&#xff0c;私钥则保留在本地。当你使用SSH连接到支持SSH Key认证的服务器时&#xff0c;服务器会用公钥来加密一个随机生成的字符串发送给客户端&#xff0c;客户端用私钥解密并…

C语言(字符和字符串函数)2

Hi~&#xff01;这里是奋斗的小羊&#xff0c;很荣幸各位能阅读我的文章&#xff0c;诚请评论指点&#xff0c;欢迎欢迎~~ &#x1f4a5;个人主页&#xff1a;小羊在奋斗 &#x1f4a5;所属专栏&#xff1a;C语言 本系列文章为个人学习笔记&#xff0c;在这里撰写成文一…

github有趣项目:自制“我的世界” project make

videocodehttps://www.youtube.com/watch?v4O0_-1NaWnY,https://www.bilibili.com/video/BV1oj411p7qM/?https://github.com/jdah/minecraft-weekend MAKE git clone --recurse-submodules https://github.com/jdah/minecraft-weekend.git 正克隆到 minecraft-weekend... …

直播分享|深入解析ts-morph:通过注释生成类型文档

♪ ♫ 你看小狗在叫 树叶会笑 风声在呢喃♫ ♪ 乘风追梦&#xff0c;童心未泯 OpenTiny 预祝所有大朋友、小朋友儿童节快乐~ 与此同时&#xff0c;OpenTiny 贡献者直播也即将开启啦~ 直播主题&#xff1a;【深入解析ts-morph&#xff1a;通过注释生成类型文档】 6月1日&am…

碳课堂|入门必看!碳足迹(CFP)主要国际标准一览

一、碳足迹概念 碳足迹&#xff08;Carbon FootPrint&#xff0c;CFP&#xff09;是用来衡量个体、组织、产品或国家在一定时间内直接或间接导致的二氧化碳排放量的指标。产品碳足迹属于碳排放核算的一种&#xff0c;一般指产品从原材料加工、运输、生产到出厂销售等流程所产生…

【Java】刚刚!突然!紧急通知!垃圾回收!

【Java】刚刚&#xff01;突然&#xff01;紧急通知&#xff01;垃圾回收&#xff01; 文章目录 【Java】刚刚&#xff01;突然&#xff01;紧急通知&#xff01;垃圾回收&#xff01;从C语言的内存管理引入&#xff1a;手动回收Java的垃圾回收机制引用计数器循环引用问题 可达…

SpringBoot六种API请求参数读取方式

SpringBoot六种API请求参数读取方式 同步请求和异步请求 同步: 指单线程依次做几件事异步: 指多线程同时做几件事 同步请求: 指客户端浏览器只有一个主线程, 此线程负责页面的渲染和发出请求等操作, 如果此主线程发出请求的话则停止渲染而且会清空页面显示的内容 直到服务器响…

优化基础(二):线性组合、仿射组合、锥组合、凸组合、线性集合、仿射集合、锥集合、凸集合的理解

文章目录 前言组合线性组合 (linear combination)仿射组合 (affine combination)锥组合 (conic combination)凸组合 (convex combination) 集合仿射集合凸集合 练习&#xff1a;哪个图形是凸的&#xff0c;哪个是仿射的&#xff1f;参考资料 前言 组合侧重于描述由一些基点生成…

越洗越黑”的Pandas数据清洗

引言 先来一个脑筋急转弯活跃一下枯燥工作日常&#xff0c;问&#xff1a;“什么东西越洗越黑&#xff1f;” 有没有猜到的&#xff1f;猜不到我告诉你吧&#xff01; 答案是“煤球”。那么这个脑机急转弯跟我们要讨论的话题有没有关系呢&#xff1f; 嗯是的&#xff0c;还是沾…

三相智能电表通过Modbus转Profinet网关与PLC通讯案例

Modbus转Profinet网关&#xff08;XD-MDPN100/300&#xff09;的主要功能是实现Modbus协议和Profinet协议之间的转换和通信。Modbus转Profinet网关集成了Modbus和Profinet两种协议&#xff0c;支持Modbus RTU主站/从站&#xff0c;并可以与RS485接口的设备&#xff0c;它自带网…

接口请求参数为文件时如何测试

方法 工具&#xff1a;Postman 步骤&#xff1a;①点击body②点击form-data③选择key类型为fie ④输入参数名⑤选择参数上传⑥发送请求

对称二叉树(oj题)

一、题目链接https://leetcode-cn.com/problems/symmetric-tree/ 二、题目思路 给你一个二叉树的根节点 root &#xff0c; 检查它是否轴对称的思路: 1.将该树的左子树和右子树&#xff0c;当做两棵树&#xff0c;调用 判断两棵树是否对称相等的函数 2.判断两颗树是否对称相…

告别低效提问:掌握BARD技巧,让AI成为你的智能助手!

今天只聊一个主题&#xff1a;提示词 Prompt。 说到提示词&#xff0c;大家可能都看过GPT的高级示例&#xff0c;那些几百字的提示词&#xff0c;写起来确实不容易。 那么&#xff0c;如何写出同样效果的提示词呢&#xff1f; 有没有什么公式或者系统学习的方法&#xff1f;…

木叶飞舞之【机器人ROS2】篇章_第三节、给turtlebot3安装realsense深度相机

我们做视觉slam时会用到深度相机&#xff0c;但是gazebo的turtlebot3中只有rgb相机&#xff0c;没有深度&#xff0c;因此本节会修改代码&#xff0c;来给我们的小乌龟增加一个rgbd相机。 效果展示 发布topic如下图 图片大小都是640*480 1. 修改model.sdf文件 1.1 路径位置…

启智CV机器人,ROS, ubuntu 18.04

资料&#xff1a; https://wiki.ros.org/kinetic/Installation/Ubuntu https://blog.csdn.net/qq_44339029/article/details/120579608 http://wiki.ros.org/melodic/Installation/Ubuntu https://github.com/6-robot/wpb_cv 一、安装ros环境 装VM。 装ubuntu18.04 desktop.…