php之把两个图片合成
Posted 不觉风止
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php之把两个图片合成相关的知识,希望对你有一定的参考价值。
$dst_path = \'background.jpg\'; // 背景图 $src_path = \'qr.jpg\'; // 二维码图 //创建图片的实例 $dst = imagecreatefromstring(file_get_contents($dst_path)); $src = imagecreatefromstring(file_get_contents($src_path)); // 把二维码图片的白色背景设为透明 imagecolortransparent($src, imagecolorallocate($src, 255, 255, 255)); //获取水印图片的宽高 list($src_w, $src_h) = getimagesize($src_path); var_dump(getimagesize($src_path)); //将水印图片复制到目标图片上 imagecopymerge($dst, $src, 114, 243, 0, 0, $src_w, $src_h, 100); //生成图片 imagepng($dst,\'test2.png\');
//销毁 imagedestroy($dst); imagedestroy($src);
合成效果
以上是关于php之把两个图片合成的主要内容,如果未能解决你的问题,请参考以下文章