php多图合并
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php多图合并相关的知识,希望对你有一定的参考价值。
function mergerImg($imgs) {
list($max_width, $max_height) = getimagesize($imgs[‘dst‘]);
$dests = imagecreatetruecolor($max_width, $max_height);
$dst_im = imagecreatefrompng($imgs[‘dst‘]);
imagecopy($dests,$dst_im,0,0,0,0,$max_width,$max_height);
imagedestroy($dst_im);
$src_im = imagecreatefrompng($imgs[‘src‘]);
$src_info = getimagesize($imgs[‘src‘]);
imagecopy($dests,$src_im,0,$max_height/2,0,0,$src_info[0],$src_info[1]);
imagedestroy($src_im);
header("Content-type: image/jpeg");
imagejpeg($dests);
}
$imgs = array(
‘dst‘ => ‘http://www.wangshangyou.com/content/uploadfile/201312/b3241386050881.png‘,
‘src‘ => ‘http://www.wangshangyou.com/content/uploadfile/201312/72691386051117.png‘
);
mergerImg($imgs);
以上是关于php多图合并的主要内容,如果未能解决你的问题,请参考以下文章