PHP中实现合并图片的代码是什么
Admin 2022-08-13 群英技术资讯 365 次浏览
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);
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
在本篇文章里小编给大家整理的是一篇关于php没有文件被上传的实例分析及解决办法,有兴趣的朋友们可以跟着学习参考下。
在laravel中,guard是一个用于用户认证的插件;guard的作用就是处理认证判断每一个请求,从数据库中读取数据和用户输入的对比,调用是否登录过或者允许通过的,并且Guard能非常灵活的构建一套自己的认证体系。
php中__sleep方法的使用:1、在类的外部调用serialize()时自动调用。2、__sleep()方法通常用于提交未提交的数据或类似的清理操作。如果有一些大对象,但不需要完全保存,这个功能非常有用。
sort()定义和用法 sort()函数按升序对给定数组的值排序。 注释:本函数为数组中的单元赋予新的键名。原有的键名将被删除。 如果成功则返回TRUE...
本篇文章小编给大家分享一下Pandas时间类型转换与处理代码实现示例,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008