给图片添加图片水印

/**
 * 给图片添加图片水印
 */
/*一、打开操作图片和作为水印的图片并获取其基本信息*/
//图片路径
$path1 = "images/bd.png";
$path2 = 'images/code.png';
//复制图片
$info1 = getimagesize($path1);
$info2 = getimagesize($path2);
$type1 = image_type_to_extension($info1[2],false);
$type2 = image_type_to_extension($info2[2],false);
$fun1 = "imagecreatefrom".$type1;
$fun2 = "imagecreatefrom".$type2;
$image1 = $fun1($path1);
$image2 = $fun2($path2);
/*二、操作图片*/
imagecopymerge($image1,$image2,20,20,0,0,$info2[0],$info2[1],50);
header("Content-type:".$type1);
imagepng($image1);
/*四、销毁图片*/
imagedestroy($image1);
imagedestroy($image2);

你可能感兴趣的:(PHP,图片水印)