将2个图像合并为1,模糊

时间:2013-09-25 12:29:10

标签: php image

如何在PHP中合并2个图像并具有模糊效果?

我需要制作类似http://www.bildites.lv/images/yzgc1puaci0nk1qeo0v.jpg的内容(此图片是使用photoshop创建的)。

1 个答案:

答案 0 :(得分:1)

您可以使用imagecopymerge()函数。

例如。

    <?php
    $dest = imagecreatefrompng('first.png');
    $src = imagecreatefromjpeg('second.jpg');

    imagealphablending($dest, false);
    imagesavealpha($dest, true);

    imagecopymerge($dest, $src, 11, 11, 0, 0, 100, 43, 73); //See function parameter details

    header('Content-Type: image/png');
    imagepng($dest);

    imagedestroy($dest);
    imagedestroy($src);
    ?>