截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

QrCodeLogic.php 25KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\logic;
  20. use app\common\enum\ClientEnum;
  21. use app\common\model\RechargeTemplate;
  22. use app\common\server\ConfigServer;
  23. use app\common\server\FileServer;
  24. use app\common\server\storage\Driver as StorageDriver;
  25. use app\common\server\UrlServer;
  26. use app\common\server\WeChatServer;
  27. use app\common\server\JsonServer;
  28. use EasyWeChat\Kernel\Http\StreamResponse;
  29. use Endroid\QrCode\QrCode;
  30. use think\facade\Cache;
  31. use think\Exception;
  32. use EasyWeChat\Factory;
  33. use think\facade\Log;
  34. use think\facade\Request;
  35. class QrCodeLogic
  36. {
  37. //商品图片配置
  38. public function goodsShareConfig(){
  39. return [
  40. //会员头像
  41. 'head_pic' => [
  42. 'w' => 64, 'h' => 64, 'x' => 40, 'y' => 20,
  43. ],
  44. //会员昵称
  45. 'nickname' => [
  46. 'color' => '#555555', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 19, 'x' => 120, 'y' => 60,
  47. ],
  48. //标题
  49. 'title' => [
  50. 'color' => '#333333', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Bold.otf', 'font_size' => 20, 'w' => 360, 'x' => 40, 'y' => 785,
  51. ],
  52. //价格符号
  53. 'price_symbol' => [
  54. 'color' => '#FF2C3C', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 22, 'w' => 140, 'x' => 40, 'y' => 722,
  55. ],
  56. //商品价格
  57. 'price' => [
  58. 'color' => '#FF2C3C', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Bold.otf', 'font_size' => 32, 'w' => 140, 'x' => 64, 'y' => 722,
  59. ],
  60. //小数
  61. 'decimal'=> [
  62. 'color' => '#FF2C3C', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Bold.otf', 'font_size' => 22, 'w' => 140, 'x' => 114, 'y' => 722,
  63. ],
  64. //市场价
  65. 'market_price_symbol' => [
  66. 'color' => '#999999', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 22, 'w' => 140, 'x' => 142, 'y' => 722,
  67. ],
  68. //市场价符号
  69. 'market_price' => [
  70. 'color' => '#999999', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'w' => 140, 'x' => 168, 'y' => 722,
  71. ],
  72. //推广主图商品主图
  73. 'main_pic' => [
  74. 'w' => 560, 'h' => 560, 'x' => 40, 'y' => 100,
  75. ],
  76. //提醒长按扫码
  77. 'notice' => [
  78. 'color' => '#888888', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 18, 'x' => 432, 'y' => 895,
  79. ],
  80. //二维码
  81. 'qr' => [
  82. 'w' => 165,'h' => 165, 'x' => 436, 'y' => 700,
  83. ],
  84. ];
  85. }
  86. //生成商品分享图
  87. public function makeGoodsPoster($user,$goods,$url,$url_type){
  88. try {
  89. $save_dir = ROOT_PATH .'/uploads/qr_code/goods_share/';
  90. $background_img = ROOT_PATH .'/images/share/share_goods_bg.png';
  91. !file_exists($save_dir) && mkdir($save_dir, 0777, true);
  92. $cache_key = 'gid' . $goods['id'].'uid'.$user['id'].$url_type;
  93. $qr_src = md5($cache_key) . '.png';
  94. $poster_url = $save_dir . $qr_src;
  95. $base64 = Cache::get($cache_key);
  96. if (!empty($base64)) {
  97. $data = [
  98. 'code' => 1,
  99. 'msg' => '海报生成成功',
  100. 'show' => 0,
  101. 'data' => $base64
  102. ];
  103. return json($data);
  104. }
  105. $poster_config = self::goodsShareConfig();
  106. //生成二维码
  107. if($url_type == 'path'){
  108. $scene = 'id='.$goods['id'].'&invite_code='.$user['distribution_code'];
  109. $result = $this->makeMnpQrcode($scene,$url,$qr_src,$save_dir);
  110. if(true !== $result){
  111. return JsonServer::error('微信配置错误:'.$result);
  112. }
  113. }else{
  114. $qrCode = new QrCode();
  115. $qrCode->setText($url);
  116. $qrCode->setSize(1000);
  117. $qrCode->setWriterByName('png');
  118. $qrCode->writeFile($poster_url);
  119. }
  120. $user_avatar = UrlServer::getFileUrl($user['avatar']);
  121. //判断头像是否存在
  122. if(!check_file_exists($user_avatar)){
  123. //如果不存在,使用默认头像
  124. $user_avatar = ROOT_PATH.ConfigServer::get('website', 'user_image');
  125. }
  126. //默认商品主图
  127. $goods_image = UrlServer::getFileUrl($goods['image']);
  128. //判断是否有自定义分享海报图
  129. if($goods['poster']){
  130. $goods_image = UrlServer::getFileUrl($goods['poster']);
  131. }
  132. if(!check_file_exists($goods_image)){
  133. //如果不存在,使用默认商品主图
  134. $goods_image = ROOT_PATH.ConfigServer::get('website', 'goods_image');
  135. }
  136. $qr_code_logic = new QrCodeLogic();
  137. //获取背景图
  138. $share_background_img = imagecreatefromstring(file_get_contents($background_img));
  139. //合成头像
  140. $qr_code_logic->writeImg($share_background_img, $user_avatar, $poster_config['head_pic'],true);
  141. //合并商品主图
  142. $qr_code_logic->writeImg($share_background_img, $goods_image, $poster_config['main_pic'],false);
  143. //合成昵称
  144. $nickname = filterEmoji($user['nickname']);
  145. $nickname = '来自'.$nickname.'的分享';
  146. $qr_code_logic->writeText($share_background_img, $nickname, $poster_config['nickname']);
  147. //长按识别
  148. $notice = '长按识别二维码';
  149. $qr_code_logic->writeText($share_background_img, $notice, $poster_config['notice']);
  150. //合成价格
  151. $qr_code_logic->writeText($share_background_img, '¥', $poster_config['price_symbol']);
  152. $qr_code_logic->writeText($share_background_img, floatval($goods['min_price']), $poster_config['price']);
  153. //合成商品标题
  154. $goods_name = auto_adapt($poster_config['title']['font_size'], 0, $poster_config['title']['font_face'], $goods['name'], $poster_config['title']['w'],$poster_config['title']['y'],getimagesize($background_img));
  155. $qr_code_logic->writeText($share_background_img, $goods_name, $poster_config['title']);
  156. //合成二维码
  157. $qr_code_logic->writeImg($share_background_img, $poster_url, $poster_config['qr'],false);
  158. imagepng($share_background_img, $poster_url);
  159. if ($fp = fopen($poster_url, "rb", 0)) {
  160. $gambar = fread($fp, filesize($poster_url));
  161. fclose($fp);
  162. $base64 = chunk_split(base64_encode($gambar));
  163. $base64 = 'data:image/png;base64,' . $base64;
  164. }
  165. //删除文件
  166. // if (strstr($poster_url, $save_dir)) {
  167. // unlink($poster_url);
  168. // }
  169. Cache::set($cache_key, $base64, 3600);
  170. $data = [
  171. 'code' => 1,
  172. 'msg' => '海报生成成功',
  173. 'show' => 0,
  174. 'data' => $base64
  175. ];
  176. return json($data);
  177. }catch (Exception $e){
  178. return JsonServer::error('海报生成错误:' . $e->getMessage());
  179. }
  180. }
  181. //用户图片配置
  182. public function userShareConfig()
  183. {
  184. return [
  185. //会员头像
  186. 'head_pic' => [
  187. 'w' => 80, 'h' => 80, 'x' => 30, 'y' => 680,
  188. ],
  189. //会员昵称
  190. 'nickname' => [
  191. 'color' => '#333333', 'font_face' => ROOT_PATH.'/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'x' => 120, 'y' => 730,
  192. ],
  193. //标题
  194. 'title' => [
  195. 'color' => '#333333', 'font_face' => ROOT_PATH.'/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'w' => 360, 'x' => 30, 'y' => 810,
  196. ],
  197. //提醒长按扫码
  198. 'notice' => [
  199. 'color' => '#333333', 'font_face' => ROOT_PATH.'/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'x' => 30, 'y' => 880,
  200. ],
  201. //邀请码文本
  202. 'code_text' => [
  203. 'color' => '#FF2C3C', 'font_face' => ROOT_PATH.'/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'x' => 355, 'y' => 930,
  204. ],
  205. //二维码
  206. 'qr' => [
  207. 'w' => 170,'h' => 170, 'x' => 370, 'y' => 730,
  208. ],
  209. ];
  210. }
  211. //生成用户小程序二维码
  212. public function makeUserMnpQrcode($code,$content,$img_src)
  213. {
  214. try {
  215. $config = WeChatServer::getMnpConfig();
  216. $app = Factory::miniProgram($config);
  217. $response = $app->app_code->get($content.'?invite_code='.$code, [
  218. 'width' => 170,
  219. ]);
  220. if ($response instanceof StreamResponse) {
  221. $response->saveAs('uploads/qr_code/user_share/', $img_src);
  222. return true;
  223. }
  224. if(isset($response['errcode']) && 41030 === $response['errcode']){
  225. return '商城小程序码,先提交审核并通过';
  226. }
  227. return $response['errmsg'];
  228. } catch (\EasyWeChat\Kernel\Exceptions\Exception $e){
  229. return $e->getMessage();
  230. }
  231. }
  232. //生成用户分享图
  233. public function makeUserPoster($user, $content, $url_type, $client)
  234. {
  235. try {
  236. $save_dir = 'uploads/qr_code/user_share/';
  237. $shareBg = ConfigServer::get('invite', 'poster', 'images/share/share_user_bg.png');
  238. $background_img = ROOT_PATH .'/'.$shareBg;
  239. !file_exists($save_dir) && mkdir($save_dir, 0777, true);
  240. $save_key = 'uid'.$user['id'].$url_type.$client;
  241. $qr_src = md5($save_key) . '.png';
  242. $poster_url = ROOT_PATH.'/'.$save_dir . $qr_src;
  243. $poster_config = $this->userShareConfig();
  244. //生成二维码
  245. if($url_type == 'path'){
  246. $result = $this->makeUserMnpQrcode($user['distribution_code'], $content, $qr_src);
  247. if(true !== $result){
  248. return ['status' => 0, 'msg' => '微信配置错误:'.$result, 'data' => ''];
  249. }
  250. }else{
  251. $qrCode = new QrCode();
  252. $qrCode->setText($content);
  253. $qrCode->setSize(1000);
  254. $qrCode->setWriterByName('png');
  255. $qrCode->writeFile($poster_url);
  256. }
  257. $user_avatar = UrlServer::getFileUrl($user['avatar'],'share');
  258. //判断头像是否存在
  259. if(!check_file_exists($user_avatar)){
  260. //如果不存在,使用默认头像
  261. $user_avatar = ROOT_PATH.ConfigServer::get('website', 'user_image');
  262. }
  263. $qr_code_logic = new QrCodeLogic();
  264. //获取背景图
  265. $share_background_img = imagecreatefromstring(file_get_contents($background_img));
  266. //合成头像
  267. $qr_code_logic->writeImg($share_background_img, $user_avatar, $poster_config['head_pic'],true);
  268. //合成昵称
  269. $nickname = filterEmoji($user['nickname']);
  270. $qr_code_logic->writeText($share_background_img, $nickname, $poster_config['nickname']);
  271. //长按识别
  272. $notice = '长按识别二维码 >>';
  273. $qr_code_logic->writeText($share_background_img, $notice, $poster_config['notice']);
  274. //合成商品标题
  275. $title = auto_adapt($poster_config['title']['font_size'], 0, $poster_config['title']['font_face'], '邀请你一起来赚大钱', $poster_config['title']['w'],$poster_config['title']['y'],getimagesize($background_img));
  276. $qr_code_logic->writeText($share_background_img, $title, $poster_config['title']);
  277. //邀请码
  278. $qr_code_logic->writeText($share_background_img, '邀请码 '.$user['distribution_code'], $poster_config['code_text']);
  279. //合成二维码
  280. $qr_code_logic->writeImg($share_background_img, $poster_url, $poster_config['qr'],false);
  281. imagepng($share_background_img, $poster_url);
  282. $file_name = $save_dir . $qr_src;
  283. $local_uir = ROOT_PATH.'/'.$file_name;
  284. self::upload($local_uir, $file_name, [ 'delete_file' => 1 ]);
  285. return ['status' => 1, 'msg' => '', 'data' => $file_name];
  286. }catch (Exception $e){
  287. return ['status' => 0, 'msg' => $e->getMessage(), 'data' => ''];
  288. }
  289. }
  290. /**
  291. * Notes: 生成的图片根据不同的存储方式储存
  292. * @param $local_uri mixed 本地图片路径 绝对路径
  293. * @param $file_name mixed 本地图片路径 相对路径
  294. * @throws Exception
  295. * @author 段誉(2021/3/2 18:47)
  296. */
  297. public function upload($local_uri, $file_name, $params = [])
  298. {
  299. $delete_file = $params['delete_file'] ?? 0;
  300. $config = [
  301. 'default' => ConfigServer::get('storage', 'default', 'local'),
  302. 'engine' => ConfigServer::get('storage_engine')
  303. ];
  304. if (empty($config['engine']['local'])) {
  305. $config['engine']['local'] = [];
  306. }
  307. if ($config['default'] != 'local') {
  308. $StorageDriver = new StorageDriver($config);
  309. if (!$StorageDriver->fetch($local_uri, $file_name)) {
  310. throw new Exception('图片保存出错:' . $StorageDriver->getError());
  311. }
  312. //删除本地图片
  313. if ($delete_file) {
  314. @unlink($file_name);
  315. }
  316. }
  317. }
  318. //砍价图片配置
  319. public function bargainShareConfig(){
  320. return [
  321. //会员头像
  322. 'head_pic' => [
  323. 'w' => 64, 'h' => 64, 'x' => 40, 'y' => 20,
  324. ],
  325. //会员昵称
  326. 'nickname' => [
  327. 'color' => '#555555', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 19, 'x' => 120, 'y' => 60,
  328. ],
  329. 'bargain_title' => [
  330. 'color' => '#FF2C3C', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Bold.otf', 'font_size' => 24, 'w' => 360, 'x' => 40, 'y' => 735,
  331. ],
  332. 'brief_title' => [
  333. 'color' => '#F95F2F', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 16, 'w' => 360, 'x' => 40, 'y' => 765,
  334. ],
  335. //标题
  336. 'title' => [
  337. 'color' => '#333333', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 20, 'w' => 360, 'x' => 40, 'y' => 795,
  338. ],
  339. //推广主图商品主图
  340. 'main_pic' => [
  341. 'w' => 560, 'h' => 560, 'x' => 40, 'y' => 100,
  342. ],
  343. //提醒长按扫码
  344. 'notice' => [
  345. 'color' => '#888888', 'font_face' => ROOT_PATH .'/font/SourceHanSansCN-Regular.otf', 'font_size' => 18, 'x' => 432, 'y' => 895,
  346. ],
  347. //二维码
  348. 'qr' => [
  349. 'w' => 165,'h' => 165, 'x' => 436, 'y' => 700,
  350. ],
  351. ];
  352. }
  353. // 生成砍价海报
  354. public function makeBargainPoster($user,$bargain_launch,$url,$url_type){
  355. try {
  356. $save_dir = ROOT_PATH .'/uploads/qr_code/bargain_share/';
  357. $background_img = ROOT_PATH .'/images/share/share_goods_bg.png';
  358. !file_exists($save_dir) && mkdir($save_dir,0777,true);
  359. $cache_key = 'bid' . $bargain_launch['id'].'uid'.$user['id'].$url_type;
  360. $qr_src = md5($cache_key) . '.png';
  361. $poster_url = $save_dir . $qr_src;
  362. $base64 = Cache::get($cache_key);
  363. if (!empty($base64)) {
  364. $data = [
  365. 'code' => 1,
  366. 'msg' => '海报生成成功',
  367. 'show' => 0,
  368. 'data' => $base64
  369. ];
  370. return json($data);
  371. }
  372. $poster_config = self::bargainShareConfig();
  373. //生成二维码
  374. if($url_type == 'path'){
  375. $scene = 'id='.$bargain_launch['id'];
  376. $result = $this->makeMnpQrcode($scene,$url,$qr_src,$save_dir);
  377. if(true !== $result){
  378. return JsonServer::error('微信配置错误:'.$result);
  379. }
  380. }else{
  381. $qrCode = new QrCode();
  382. $qrCode->setText($url);
  383. $qrCode->setSize(1000);
  384. $qrCode->setWriterByName('png');
  385. $qrCode->writeFile($poster_url);
  386. }
  387. $user_avatar = UrlServer::getFileUrl($user['avatar']);
  388. //判断头像是否存在
  389. if(!check_file_exists($user_avatar)){
  390. //如果不存在,使用默认头像
  391. $user_avatar = ROOT_PATH.ConfigServer::get('website', 'user_image');
  392. }
  393. //判断商品主图是否存在
  394. $goods_image = UrlServer::getFileUrl($bargain_launch['goods_snap']['goods_iamge'],'share');
  395. if(!check_file_exists($goods_image)){
  396. //如果不存在,使用默认商品主图
  397. $goods_image = ROOT_PATH.ConfigServer::get('website', 'goods_image');
  398. }
  399. $qr_code_logic = new QrCodeLogic();
  400. //获取背景图
  401. $share_background_img = imagecreatefromstring(file_get_contents($background_img));
  402. //合成头像
  403. $qr_code_logic->writeImg($share_background_img, $user_avatar, $poster_config['head_pic'],true);
  404. //合并商品主图
  405. $qr_code_logic->writeImg($share_background_img, $goods_image, $poster_config['main_pic'],false);
  406. //合成昵称
  407. $nickname = filterEmoji($user['nickname']);
  408. $nickname = '来自'.$nickname.'的分享';
  409. $qr_code_logic->writeText($share_background_img, $nickname, $poster_config['nickname']);
  410. //长按识别
  411. $notice = '长按识别二维码';
  412. $qr_code_logic->writeText($share_background_img, $notice, $poster_config['notice']);
  413. //合成砍价标题
  414. $bargain_title = '我正在参与砍价 还差一步';
  415. $qr_code_logic->writeText($share_background_img, $bargain_title, $poster_config['bargain_title']);
  416. //合成简介
  417. $brief_title = '帮忙砍一刀';
  418. $qr_code_logic->writeText($share_background_img, $brief_title, $poster_config['brief_title']);
  419. //合成商品标题
  420. $goods_name = auto_adapt($poster_config['title']['font_size'], 0, $poster_config['title']['font_face'], $bargain_launch['goods_snap']['name'], $poster_config['title']['w'],$poster_config['title']['y'],getimagesize($background_img));
  421. $qr_code_logic->writeText($share_background_img, $goods_name, $poster_config['title']);
  422. //合成二维码
  423. $qr_code_logic->writeImg($share_background_img, $poster_url, $poster_config['qr'],false);
  424. imagepng($share_background_img, $poster_url);
  425. if ($fp = fopen($poster_url, "rb", 0)) {
  426. $gambar = fread($fp, filesize($poster_url));
  427. fclose($fp);
  428. $base64 = chunk_split(base64_encode($gambar));
  429. $base64 = 'data:image/png;base64,' . $base64;
  430. }
  431. //删除文件
  432. if (strstr($poster_url, $save_dir)) {
  433. unlink($poster_url);
  434. }
  435. $expire = $bargain_launch['launch_end_time'] - time();
  436. Cache::set($cache_key, $base64, $expire);
  437. $data = [
  438. 'code' => 1,
  439. 'msg' => '海报生成成功',
  440. 'show' => 0,
  441. 'data' => $base64
  442. ];
  443. return json($data);
  444. }catch (Exception $e){
  445. return JsonServer::error('海报生成错误:' . $e->getMessage());
  446. }
  447. }
  448. //小程序生成二维码(非永久码)
  449. public function makeMnpQrcode($scene,$url,$img_src,$save_dir){
  450. try {
  451. $config = WeChatServer::getMnpConfig();
  452. $app = Factory::miniProgram($config);
  453. $response = $app->app_code->getUnlimit($scene, [
  454. 'page' => $url,
  455. ]);
  456. if ($response instanceof StreamResponse) {
  457. $response->saveAs($save_dir, $img_src);
  458. return true;
  459. }
  460. if(isset($response['errcode']) && 41030 === $response['errcode']){
  461. return '商城小程序未上线或商城小程序页面发布';
  462. }
  463. return $response['errmsg'];
  464. } catch (\EasyWeChat\Kernel\Exceptions\Exception $e){
  465. return $e->getMessage();
  466. }
  467. }
  468. //写入图片
  469. public function writeImg($poster, $img_uri, $config, $is_rounded = false){
  470. $pic_img = imagecreatefromstring(file_get_contents($img_uri));
  471. $is_rounded?$pic_img = rounded_corner($pic_img):'';//切成圆角返回头像资源
  472. $pic_w = imagesx($pic_img);
  473. $pic_h = imagesy($pic_img);
  474. //圆形头像大图合并到海报
  475. imagecopyresampled($poster, $pic_img,
  476. $config['x'],
  477. $config['y'],
  478. 0, 0,
  479. $config['w'],
  480. $config['h'],
  481. $pic_w,
  482. $pic_h
  483. );
  484. return $poster;
  485. }
  486. //写入文字
  487. public function writeText($poster, $text, $config){
  488. $font_uri = $config['font_face'];
  489. $font_size = $config['font_size'];
  490. $color = substr($config['color'],1);
  491. //颜色转换
  492. $color= str_split($color, 2);
  493. $color = array_map('hexdec', $color);
  494. if (empty($color[3]) || $color[3] > 127) {
  495. $color[3] = 0;
  496. }
  497. //写入文字
  498. $font_col = imagecolorallocatealpha($poster, $color[0], $color[1], $color[2], $color[3]);
  499. imagettftext($poster, $font_size,0, $config['x'], $config['y'], $font_col, $font_uri, $text);
  500. return $poster;
  501. }
  502. /**
  503. * @notes 店铺二维码
  504. * @param $shop_id
  505. * @param $terminal
  506. * @return string
  507. * @author lbzy
  508. * @datetime 2024-04-01 10:59:40
  509. */
  510. function shopQrCode($shop_id, $terminal = null) : string
  511. {
  512. try {
  513. $url = '/pages/store_index/store_index?id=' . $shop_id;
  514. $path = 'uploads/qr_code/shop/';
  515. $filename = 'detail.' . md5($shop_id . $terminal) . '.png';
  516. $local_file = $path . $filename;
  517. $root_name = ROOT_PATH . $local_file;
  518. $save_dir = ROOT_PATH . '/' . $path;
  519. $poster_url = $save_dir . $filename;
  520. if (file_exists($root_name)) {
  521. return UrlServer::getFileUrl($local_file);
  522. }
  523. ! file_exists($save_dir) && mkdir($save_dir, 0777, true);
  524. switch ($terminal) {
  525. // 小程序 返回小程序码
  526. case ClientEnum::mnp:
  527. $config = WeChatServer::getMnpConfig();
  528. $app = Factory::miniProgram($config);
  529. $response = $app->app_code->get($url, [
  530. 'width' => 240,
  531. //...
  532. ]);
  533. if ($response instanceof StreamResponse) {
  534. $response->saveAs($save_dir, $filename);
  535. }
  536. break;
  537. // 其他 返回普通二维码
  538. default:
  539. $qrCode = new QrCode();
  540. $qrCode->setText(Request::domain(true) . '/mobile' . $url);
  541. $qrCode->setSize(240);
  542. $qrCode->setWriterByName('png');
  543. $qrCode->writeFile($poster_url);
  544. break;
  545. }
  546. $this->upload($root_name, $local_file, [ 'delete_file' => 0 ]);
  547. return UrlServer::getFileUrl($local_file);
  548. } catch(\Throwable $e) {
  549. Log::write($e->__toString(), 'shop_qr_code_error');
  550. return '';
  551. }
  552. }
  553. }