PHP中实现合并图片的代码是什么

Admin 2022-08-13 群英技术资讯 365 次浏览

今天就跟大家聊聊有关“PHP中实现合并图片的代码是什么”的内容,可能很多人都不太了解,为了让大家认识和更进一步的了解,小编给大家总结了以下内容,希望这篇“PHP中实现合并图片的代码是什么”文章能对大家有帮助。


 1 function combineImage($head_img,$middle_img,$footer_img,$save_path){
 2     $source_w = 400;
 3     $source_h = 1142;
 4     //取头部图片大小
 5     $head_size = getimagesize($head_img);
 6     $head_height = $head_size['1'];
 7     $head_width = $head_size['0'];
 8     $head_start_x = floor(($source_w-$head_width)/2);//头部开始位置
 9     //取中间图片大小
10     $midd_size = getimagesize($middle_img);
11     $midd_height = $midd_size['1'];
12     $midd_width = $midd_size['0'];
13     $midd_start_y = $head_height-15;//中间开始Y坐标,因为头部的图片底部有空白,所以减去15
14     $midd_start_x = floor(($source_w-$midd_width)/2);
15     
16     //取底部图片大小
17     $foot_size = getimagesize($footer_img);
18     $foot_height = $foot_size[1];
19     $foot_width = $foot_size[0];
20     $foot_start_x = floor(($source_w-$foot_width)/2);//底部图片x坐标
21     $foot_start_y = $source_h-$foot_height;//底部图片y坐标
22     
23     $head = imagecreatefrompng($head_img);
24     $middle = imagecreatefrompng($middle_img);
25     $footer = imagecreatefrompng($footer_img);
26     
27     $bg_img = imageCreatetruecolor($source_w,$source_h);//生成背景图片
28     $color = imagecolorallocate($bg_img, 255, 255, 255); //设置白色背景
29     imagefill($bg_img, 0, 0, $color);//背景色填充
30     imageColorTransparent($bg_img, $color);//透明
31     imagecopyresampled($bg_img,$head,$head_start_x,0,0,0,$head_width,$head_height,$head_width,$head_height);
32     imagecopyresampled($bg_img,$middle,$midd_start_x , $midd_start_y,0,0,$midd_width,$midd_height,$midd_width,$midd_height);
33     imagecopyresampled($bg_img,$footer,$foot_start_x , $foot_start_y,0,0,$foot_width,$foot_height,$foot_width,$foot_height);
34     
35     imagepng($bg_img,$save_path );
36 }
37 $head = dirname(__FILE__).'/public/images/head.png';
38 $midd = dirname(__FILE__).'/public/images/midd1.png';
39 $foot = dirname(__FILE__).'/public/images/foot1.png';
40 $save_path = dirname(__FILE__)."/public/images/testcomblie.png";
41 combineImage($head,$midd,$foot,$save_path);

 


到此这篇关于“PHP中实现合并图片的代码是什么”的文章就介绍到这了,更多相关内容请搜索群英网络以前的文章或继续浏览下面的相关文章,希望大家以后多多支持群英网络!
群英智防CDN,智能加速解决方案
标签: php合并图片

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。

猜你喜欢

成为群英会员,开启智能安全云计算之旅

立即注册
专业资深工程师驻守
7X24小时快速响应
一站式无忧技术支持
免费备案服务
免费拨打  400-678-4567
免费拨打  400-678-4567 免费拨打 400-678-4567 或 0668-2555555
在线客服
微信公众号
返回顶部
返回顶部 返回顶部
在线客服
在线客服