暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Poster.php 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2022-03-10
  12. */
  13. namespace app\api\model\v1;
  14. use think\Db;
  15. use think\Cache;
  16. use Grafika\Color;
  17. use Grafika\Grafika;
  18. require_once './vendor/grafika/src/autoloader.php';
  19. /**
  20. * 微信小程序商品海报模型
  21. */
  22. load_trait('controller/Jump');
  23. class Poster extends Base
  24. {
  25. use \traits\controller\Jump;
  26. //初始化
  27. protected function initialize()
  28. {
  29. // 需要调用`Model`的`initialize`方法
  30. parent::initialize();
  31. $this->version = 'v1';//初始海报版本
  32. $this->aid = 0;
  33. $this->typeid = 0;
  34. $this->channel = 1;
  35. $this->product = [];
  36. $this->postData = [];
  37. $this->posterPath = '';
  38. $this->posterImage = '';
  39. $this->appletsQrcode = [];
  40. $this->post = [];
  41. $this->users = [];
  42. }
  43. // 商品海报生成处理
  44. // $appletsType: 1=开源小程序,2=可视化小程序
  45. public function getCreateGoodsShareQrcodePoster($post = [], $channel = 1, $appletsType = 1)
  46. {
  47. $this->post = $post;
  48. // 商品ID
  49. $this->aid = $post['aid'];
  50. // 商品栏目ID
  51. $this->typeid = $post['typeid'];
  52. //版本
  53. if(!empty($post['version'])) $this->version = $post['version'];
  54. // 图片、海报保存目录
  55. $this->posterPath = UPLOAD_PATH . 'tmp/poster_' . $this->typeid . '_' . $this->aid . '/';
  56. // 存在 分销商会员ID 和 分销商ID 则执行
  57. if (!empty($this->usersID) && !empty($this->dealerID)) {
  58. $this->posterPath = UPLOAD_PATH . 'tmp/poster_' . $this->typeid . '_' . $this->aid . '_' . $this->usersID . '_' . $this->dealerID . '/';
  59. }
  60. // 会员ID
  61. $this->users_id = !empty($post['mid']) ? $post['mid'] :0;
  62. if ('v2' == $this->version){
  63. $this->users = $this->getUsersInfo();
  64. }
  65. // 分销商会员ID
  66. $this->usersID = !empty($post['users_id']) ? $post['users_id'] :0;
  67. // 分销商ID
  68. $this->dealerID = !empty($post['dealer_id']) ? $post['dealer_id'] : 0;
  69. // 模型ID
  70. $this->channel = $channel;
  71. // 背景图片处理
  72. if (1 == $this->channel) {
  73. $this->posterImage = './public/static/common/images/article-bg.png';
  74. } else if (2 == $this->channel) {
  75. $this->posterImage = './public/static/common/images/product-bg.png';
  76. }
  77. if ('v2' == $this->version){
  78. $this->posterImage = './public/static/common/images/product-bg-v2.png';
  79. }
  80. // 获取商品信息
  81. $this->product = $this->getProductData();
  82. $fenbao = input('param.fenbao/d');
  83. $page = 'pages/';
  84. if (!empty($fenbao)) $page = 'otherpages/';
  85. // 生成小程序二维码需携带参数
  86. if (1 === intval($appletsType)) {
  87. if (!empty($post['seckill_goods_id'])) {
  88. $page .= "seckill/detail";
  89. } else {
  90. $page .= "archives/product/view";
  91. }
  92. } else if (2 === intval($appletsType)) {
  93. $page .= "article/view";
  94. } else {
  95. $page .= "index/index";
  96. }
  97. $scene = 'aid=' . $this->aid;
  98. if (!empty($this->typeid)) {
  99. //生成二维码scene长度有限制 所有typeid为空就不传了
  100. $scene .= '&typeid=' . $this->typeid;
  101. }
  102. if (!empty($post['seckill_goods_id'])) {
  103. $scene = 'gid=' . $post['seckill_goods_id'];
  104. }
  105. $width = '430';
  106. $this->postData = compact('page', 'scene', 'width');
  107. // 小程序二维码处理
  108. $this->appletsQrcode = $this->getAppletsQrcode($appletsType);
  109. // 组合并返回商品分享海报图片
  110. if ('v2' == $this->version){
  111. return $this->getProductSharePosterImageV2();
  112. }else{
  113. return $this->getProductSharePosterImage();
  114. }
  115. }
  116. public function getUsersInfo()
  117. {
  118. $users = Db::name('users')->field('head_pic,nickname')->where('users_id', $this->users_id)->find();
  119. if (empty($users)) $this->error('请先登录');
  120. // 商品图片处理
  121. $users['head_pic'] = handle_subdir_pic($users['head_pic'],'img',false,true);
  122. if (is_http_url($users['head_pic'])){
  123. //打开输出缓冲区并获取远程图片
  124. ob_start();
  125. $context = stream_context_create(
  126. array('http' => array(
  127. 'follow_location' => false // don't follow redirects
  128. ))
  129. );
  130. readfile($users['head_pic'],false,$context);
  131. $img = ob_get_contents();
  132. ob_end_clean();
  133. preg_match("/[\/]([^\/]*)[\.]?[^\.\/]*$/",$users['head_pic'],$m);
  134. // 保存图片的完整路径
  135. $LitpicSavePath = $this->posterPath . 'users_' . md5($this->users_id) . '.png';
  136. // 若文件夹不存在则创建
  137. !is_dir($this->posterPath) && tp_mkdir($this->posterPath);
  138. file_put_contents($LitpicSavePath, $img);
  139. // // 保存图片的完整路径
  140. // $LitpicSavePath = $this->posterPath . 'users_' . md5($this->users_id) . '.png';
  141. // // 若文件夹不存在则创建
  142. // !is_dir($this->posterPath) && tp_mkdir($this->posterPath);
  143. // // 图片保存到文件处理
  144. // $ch = curl_init($users['head_pic']);
  145. // curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  146. // curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  147. // // https请求 不验证证书和hosts
  148. // curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  149. // curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //重要,源文件链接带https的话就必须使用
  150. // curl_setopt($ch, CURLOPT_TIMEOUT, 60);
  151. // $img = curl_exec($ch);
  152. // curl_close($ch);
  153. // $fp = fopen($LitpicSavePath, 'w');
  154. // fwrite($fp, $img);
  155. // fclose($fp);
  156. // 返回数据
  157. $users['head_pic'] = "./".$LitpicSavePath;
  158. }else {
  159. $users['head_pic'] = ".".$users['head_pic'];
  160. }
  161. return $users;
  162. }
  163. // 返回已处理的商品信息
  164. private function getProductData()
  165. {
  166. // 查询商品信息
  167. $where['aid'] = $this->aid;
  168. $field = 'aid, title, litpic, users_price, seo_description';
  169. $Product = Db::name("archives")->where($where)->field($field)->find();
  170. if (!empty($Product)) {
  171. if (!empty($this->post['seckill_goods_id'])) {
  172. //检测是否安装秒杀插件
  173. if (is_dir('./weapp/Seckill/')) {
  174. $SeckillRow = model('Weapp')->getWeappList('Seckill');
  175. if (!empty($SeckillRow) && 1 != intval($SeckillRow['status'])) {
  176. $this->error('请先安装秒杀插件');
  177. }
  178. } else {
  179. $this->error('请先安装秒杀插件');
  180. }
  181. $seckill_goods = Db::name('weapp_seckill_archives')->where('goods_id', $this->post['seckill_goods_id'])->find();
  182. if (!empty($seckill_goods['is_spec'])) {
  183. $seckill_goods['seckill_price'] = Db::name('weapp_seckill_product_spec_value')->where('goods_id', $this->post['seckill_goods_id'])->min('seckill_price');
  184. }
  185. $Product['crossed_price'] = $Product['users_price'];
  186. $Product['users_price'] = $seckill_goods['seckill_price'];
  187. }
  188. // 商品图片处理
  189. $ProductLitpic = $this->get_default_pic($Product['litpic'], true);
  190. // 保存图片的完整路径
  191. $LitpicSavePath = $this->posterPath . 'product_' . md5($this->aid . $this->typeid) . '.png';
  192. // 若文件夹不存在则创建
  193. !is_dir($this->posterPath) && tp_mkdir($this->posterPath);
  194. // 图片保存到文件处理
  195. $ch = curl_init($ProductLitpic);
  196. curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
  197. curl_setopt($ch,CURLOPT_BINARYTRANSFER,true);
  198. // https请求 不验证证书和hosts
  199. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  200. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //重要,源文件链接带https的话就必须使用
  201. curl_setopt($ch,CURLOPT_TIMEOUT,60);
  202. $img = curl_exec($ch);
  203. curl_close($ch);
  204. $fp = fopen($LitpicSavePath, 'w');
  205. fwrite($fp, $img);
  206. fclose($fp);
  207. // 返回数据
  208. $Product['litpic'] = $LitpicSavePath;
  209. return $Product;
  210. } else {
  211. $this->error('商品不存在');
  212. }
  213. }
  214. // 返回已处理的小程序二维码
  215. private function getAppletsQrcode($appletsType = 1)
  216. {
  217. // 保存图片的完整路径
  218. $qrcodeSavePath = $this->posterPath . 'qrcode_' . md5($this->aid . $this->typeid) . '.png';
  219. // 若文件夹不存在则创建
  220. !is_dir($this->posterPath) && tp_mkdir($this->posterPath);
  221. // 是否配置小程序信息
  222. if (1 === intval($appletsType)) {
  223. $applets = 'openSource';
  224. } else if (2 === intval($appletsType)) {
  225. $applets = 'visualization';
  226. }
  227. $appletsToken = get_weixin_access_token(true, $applets);
  228. if (empty($appletsToken['code'])) {
  229. return [
  230. 'status' => false,
  231. 'msg' => $appletsToken['msg'],
  232. ];
  233. }
  234. // 调用微信接口获取小程序二维码
  235. return $this->getWeChatAppletsQrcode($appletsToken['access_token'], $qrcodeSavePath);
  236. }
  237. // 返回微信小程序商品详情页二维码
  238. private function getWeChatAppletsQrcode($accessToken = null, $qrcodeSavePath = null)
  239. {
  240. // 获取微信小程序二维码
  241. $postUrl = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=" . $accessToken;
  242. $appletsQrcode = httpRequest($postUrl, 'POST', json_encode($this->postData, JSON_UNESCAPED_UNICODE));
  243. $is_fail = strpos($appletsQrcode,"errcode");
  244. // 保存图片,保存成功则返回图片路径
  245. if ($is_fail != false){ //报错
  246. $error_msg = json_decode($appletsQrcode,true);
  247. $result = [
  248. 'status' => false,
  249. 'errcode' => $error_msg['errcode'],
  250. 'errmsg' => '获取二维码失败,'.$error_msg['errcode'].":".$error_msg['errmsg'],
  251. ];
  252. } else if (@file_put_contents($qrcodeSavePath, $appletsQrcode)) {
  253. $result = [
  254. 'status' => true,
  255. 'qrcode' => $qrcodeSavePath,
  256. ];
  257. } else {
  258. $result = [
  259. 'status' => false,
  260. 'errcode' => 10000,
  261. 'errmsg' => '获取二维码失败,请重试',
  262. ];
  263. }
  264. return $result;
  265. }
  266. // 返回商品分享海报图片
  267. private function getProductSharePosterImage()
  268. {
  269. $Grafika = new Grafika;
  270. $editor = $Grafika::createEditor(['Gd']);
  271. // 打开海报背景图
  272. $editor->open($backdropImage, $this->posterImage);
  273. // 打开商品图片
  274. $editor->open($ProductLitpic, $this->product['litpic']);
  275. // 重设商品图片宽高
  276. $editor->resizeExact($ProductLitpic, 690, 690);
  277. // 商品图片添加到背景图
  278. $editor->blend($backdropImage, $ProductLitpic, 'normal', 1.0, 'top-left', 30, 30);
  279. // 字体文件路径
  280. $fontPath = Grafika::fontsDir() . '/' . 'st-heiti-light.ttc';
  281. // 商品名称处理换行
  282. $fontSize = 30;
  283. $productName = $this->wrapText($fontSize, 0, $fontPath, $this->product['title'], 680, 2);
  284. // 写入商品名称
  285. $editor->text($backdropImage, $productName, $fontSize, 30, 750, new Color('#333333'), $fontPath);
  286. //写入商品价格
  287. if (1 == $this->channel) {
  288. // 字体文件路径
  289. $fontPath = Grafika::fontsDir() . '/' . 'st-heiti-light.ttc';
  290. // 文档描述处理换行
  291. $fontSize = 20;
  292. $seoDescription = $this->wrapText($fontSize, 0, $fontPath, $this->product['seo_description'], 500, 4);
  293. // 写入文档描述
  294. $editor->text($backdropImage, $seoDescription, $fontSize, 30, 920, new Color('#333333'), $fontPath);
  295. } else if (2 == $this->channel) {
  296. $editor->text($backdropImage, $this->product['users_price'], 38, 62, 964, new Color('#ff4444'));
  297. }
  298. // 打开小程序码
  299. if (!empty($this->appletsQrcode['status'])){
  300. $editor->open($qrcodeImage, $this->appletsQrcode['qrcode']);
  301. // 重设小程序码宽高
  302. $editor->resizeExact($qrcodeImage, 140, 140);
  303. // 小程序码添加到背景图
  304. $editor->blend($backdropImage, $qrcodeImage, 'normal', 1.0, 'top-left', 570, 914);
  305. // 保存商品海报
  306. $posterImageName = 'product_poster_' . md5($this->aid . $this->typeid) . '.png';
  307. $posterImagePath = $this->posterPath . $posterImageName;
  308. $editor->save($backdropImage, $posterImagePath);
  309. // 返回商品海报
  310. $posterImagePath = request()->domain() . ROOT_DIR . '/' . $posterImagePath;
  311. return [
  312. 'name' => $posterImageName,
  313. 'path' => $this->posterPath,
  314. 'poster' => $posterImagePath
  315. ];
  316. } else {
  317. return $this->appletsQrcode;
  318. }
  319. }
  320. // 处理文字超出长度自动换行
  321. private function wrapText($fontsize, $angle, $fontface, $string, $width, $max_line = null)
  322. {
  323. // 这几个变量分别是 字体大小, 角度, 字体名称, 字符串, 预设宽度
  324. $content = "";
  325. // 将字符串拆分成一个个单字 保存到数组 letter 中
  326. $letter = [];
  327. for ($i = 0; $i < mb_strlen($string, 'UTF-8'); $i++) {
  328. $letter[] = mb_substr($string, $i, 1, 'UTF-8');
  329. }
  330. $line_count = 0;
  331. foreach ($letter as $l) {
  332. $testbox = imagettfbbox($fontsize, $angle, $fontface, $content . ' ' . $l);
  333. // 判断拼接后的字符串是否超过预设的宽度
  334. if (($testbox[2] > $width) && ($content !== "")) {
  335. $line_count++;
  336. if ($max_line && $line_count >= $max_line) {
  337. $content = mb_substr($content, 0, -1, 'UTF-8') . "...";
  338. break;
  339. }
  340. $content .= "\n";
  341. }
  342. $content .= $l;
  343. }
  344. return $content;
  345. }
  346. // 返回商品分享海报图片 第二套 需要登录,分享商品带用户信息,分享文章应该使用第一套
  347. private function getProductSharePosterImageV2()
  348. {
  349. $Grafika = new Grafika;
  350. $editor = $Grafika::createEditor(['Gd']);
  351. // 字体文件路径
  352. $fontPath = Grafika::fontsDir() . '/' . 'st-heiti-light.ttc';
  353. // $fontPath = Grafika::fontsDir() . '/' . '联想小新黑体 常规.ttf';
  354. // 打开海报背景图
  355. $editor->open($backdropImage, $this->posterImage);
  356. $this->CircularImage($this->users['head_pic'], $this->users['head_pic']);
  357. //处理用户头像
  358. $editor->open($head_pic, $this->users['head_pic']);
  359. // 重设用户头像宽高
  360. $editor->resizeExact($head_pic, 88, 92);
  361. // 用户头像添加到背景图
  362. $editor->blend($backdropImage, $head_pic, 'normal', 1.0, 'top-left', 20, 30);
  363. // 用户名
  364. $editor->text($backdropImage, $this->users['nickname'], 20, 130, 50, new Color('#000'), $fontPath);
  365. $editor->text($backdropImage, '推荐一个好物给你,请查收!', 17, 130, 90, new Color('#3a3a3a'), $fontPath);
  366. $this->CircularImageBorder($this->product['litpic'],$this->product['litpic']);
  367. // 打开商品图片
  368. $editor->open($ProductLitpic, $this->product['litpic']);
  369. // 重设商品图片宽高
  370. $editor->resizeExact($ProductLitpic, 560, 600);
  371. // 商品图片添加到背景图
  372. $editor->blend($backdropImage, $ProductLitpic, 'normal', 1.0, 'top-left', 20, 140);
  373. // 商品名称处理换行
  374. $fontSize = 18;
  375. $productName = $this->wrapText($fontSize, 0, $fontPath, $this->product['title'], 565, 2);
  376. // 写入商品名称
  377. $editor->text($backdropImage, $productName, $fontSize, 24, 765, new Color('#000'), $fontPath);
  378. //写入商品价格
  379. $editor->text($backdropImage, '¥'.$this->product['users_price'], 25, 25, 845, new Color('#FF0000'), $fontPath);
  380. // if (!empty($this->product['crossed_price'])){
  381. // //写入商品划线价格
  382. // $editor->text($backdropImage, '¥'.$this->product['crossed_price'], 16, 180, 845, new Color('#959795'),$fontPath);
  383. // }
  384. $editor->text($backdropImage, '长按识别或扫描二维码!', 17, 20, 890, new Color('#464544'), $fontPath);
  385. $editor->text($backdropImage, '更多品质好货等着你!', 17, 20, 930, new Color('#eaaf49'), $fontPath);
  386. // 打开小程序码
  387. if (!empty($this->appletsQrcode['status'])) {
  388. $this->CircularImage($this->appletsQrcode['qrcode'], $this->appletsQrcode['qrcode']);
  389. $editor->open($qrcodeImage, $this->appletsQrcode['qrcode']);
  390. // 重设小程序码宽高
  391. $editor->resizeExact($qrcodeImage, 120, 120);
  392. // 小程序码添加到背景图
  393. $editor->blend($backdropImage, $qrcodeImage, 'normal', 1.0, 'top-left', 410, 840);
  394. // 保存商品海报
  395. $posterImageName = 'product_poster_' . md5($this->aid . $this->typeid) . '.png';
  396. $posterImagePath = $this->posterPath . $posterImageName;
  397. $editor->save($backdropImage, $posterImagePath);
  398. // 返回商品海报
  399. $posterImagePath = request()->domain() . ROOT_DIR . '/' . $posterImagePath;
  400. return [
  401. 'name' => $posterImageName,
  402. 'path' => $this->posterPath,
  403. 'poster' => $posterImagePath
  404. ];
  405. } else {
  406. return $this->appletsQrcode;
  407. }
  408. }
  409. // 生成圆形用户头像
  410. private function CircularImage($ImagePath = '', $SaveName = '')
  411. {
  412. $srcImg = imagecreatefromstring(file_get_contents($ImagePath));
  413. $w = imagesx($srcImg);
  414. $h = imagesy($srcImg);
  415. $w = $h = min($w, $h);
  416. $newImg = imagecreatetruecolor($w, $h);
  417. // 这一句一定要有
  418. imagesavealpha($newImg, true);
  419. // 拾取一个完全透明的颜色,最后一个参数127为全透明
  420. $bg = imagecolorallocatealpha($newImg, 255, 255, 255, 127);
  421. imagefill($newImg, 0, 0, $bg);
  422. $r = $w / 2; //圆半径
  423. for ($x = 0; $x < $w; $x++) {
  424. for ($y = 0; $y < $h; $y++) {
  425. $rgbColor = imagecolorat($srcImg, $x, $y);
  426. if (((($x - $r) * ($x - $r) + ($y - $r) * ($y - $r)) < ($r * $r))) {
  427. imagesetpixel($newImg, $x, $y, $rgbColor);
  428. }
  429. }
  430. }
  431. // 输出图片到文件
  432. imagepng($newImg, $SaveName);
  433. // 释放空间
  434. imagedestroy($srcImg);
  435. imagedestroy($newImg);
  436. }
  437. // 处理商品图边框形状 $r 圆角长度
  438. private function CircularImageBorder($ImagePath = '', $SaveName = '',$r = 20)
  439. {
  440. $srcImg = imagecreatefromstring(file_get_contents($ImagePath));
  441. $w = imagesx($srcImg);
  442. $h = imagesy($srcImg);
  443. $w = $h = min($w, $h);
  444. $newImg = imagecreatetruecolor($w, $h);
  445. // 这一句一定要有
  446. imagesavealpha($newImg, true);
  447. // 拾取一个完全透明的颜色,最后一个参数127为全透明
  448. $bg = imagecolorallocatealpha($newImg, 255, 255, 255, 127);
  449. imagefill($newImg, 0, 0, $bg);
  450. // 创建圆角
  451. for ($x = 0; $x < $w; $x++) {
  452. for ($y = 0; $y < $h; $y++) {
  453. $color = imagecolorat($srcImg, $x, $y);
  454. if (($x >= $r && $x <= $w - $r) || ($y >= $r && $y <= $h - $r)) {
  455. //不在四角范围内,直接画
  456. imagesetpixel($newImg, $x, $y, $color);
  457. } else {
  458. //不在四角范围内,直接画
  459. //上左
  460. if (((($x - $r) * ($x - $r) + ($y - $r) * ($y - $r)) <= ($r * $r))) {
  461. imagesetpixel($newImg, $x, $y, $color);
  462. }
  463. $y_x = $w - $r;
  464. //上右
  465. if (((($x - $y_x) * ($x - $y_x) + ($y - $r) * ($y - $r)) <= ($r * $r))) {
  466. imagesetpixel($newImg, $x, $y, $color);
  467. }
  468. //下左
  469. $y_y = $h - $r;
  470. if (((($x - $r) * ($x - $r) + ($y - $y_y) * ($y - $y_y)) <= ($r * $r))) {
  471. imagesetpixel($newImg, $x, $y, $color);
  472. }
  473. //下右
  474. $y_y = $h - $r;
  475. if (((($x - $y_x) * ($x - $y_x) + ($y - $y_y) * ($y - $y_y)) <= ($r * $r))) {
  476. imagesetpixel($newImg, $x, $y, $color);
  477. }
  478. }
  479. }
  480. }
  481. // 输出图片到文件
  482. imagepng($newImg, $SaveName);
  483. // 释放空间
  484. imagedestroy($srcImg);
  485. imagedestroy($newImg);
  486. }
  487. }