本文主要和大家分享php多张图片合并方法,PHP imagecopymerge 函数可以支持两个图像叠加时,设置叠加的透明度,imagecopy 函数则不支持叠加透明,实际上,PHP内部源码里,imagecopymerge在透明度参数为100时,直接调用imagecopy函数。
然而,imagecopy函数拷贝时可以保留png图像的原透明信息,而imagecopymerge却不支持图片的本身的透明拷贝,
比较罗嗦,以一个实际的例子来演示以下:
在图像上打上LOGO水印。
一般来说,logo由图标和网址组成,比如是一个透明的png图像,logo.png ,
现在如果要把这个logo打到图片上,
使用imagecopymerge函数,可以实现打上透明度为30%的淡淡的水印图标,但logo本身的png就会变得像IE6不支持png透明那样,背景不透明了,如果使用imagecopy函数,可以保留logo本身的透明信息,但无法实现30%的淡淡水印叠加,
php官方有人实现的办法:使用 imagecopymerge_alpha 函数可以直接实现这个两个函数的功能,保留png自身透明的同时,实现自定义透明度叠加,不过该函数的内部使用 $opacity = 100 – $opacity; 来实现透明度,好像刚好反了
$dst = imagecreatefromstring(file_get_contents($dst_path));
$src = imagecreatefromstring(file_get_contents($src_path));
imagecopy($dst, $src, 100, 100, 0, 0, 100, 100);//完成合并function imagecopymerge_alpha($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct){
$opacity=$pct;
// getting the watermark width
$w = imagesx($src_im);
// getting the watermark height
$h = imagesy($src_im);
// creating a cut resource
$cut = imagecreatetruecolor($src_w, $src_h);
// copying that section of the background to the cut
imagecopy($cut, $dst_im, 0, 0, $dst_x, $dst_y, $src_w, $src_h);
// inverting the opacity
$opacity = 100 – $opacity;
// placing the watermark now
imagecopy($cut, $src_im, 0, 0, $src_x, $src_y, $src_w, $src_h);
imagecopymerge($dst_im, $cut, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $opacity);
}
相关推荐: