将php生成的图像叠加在另一个图像上

时间:2013-09-11 21:05:34

标签: php image gd dynamic-image-generation

我在磁盘上有一个背景jpg图像,我想在其上叠加一个php生成的png图像。不幸的是,GD的imagepng()函数直接输出数据,因此我无法将其存储在变量中以使用imagecopy()imagecopymerge()复制它。

我想要一个生成png的函数,我可以使用其中一个imagecopy()函数,但我不知道如何返回生成的png。

有没有办法在不将生成的图像写入磁盘的情况下执行此操作? 谢谢。 射线

2 个答案:

答案 0 :(得分:0)

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

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

imagecopymerge($dest, $src, 10, 9, 0, 0, 181, 180, 100); //have to play with these numbers for it to work for you, etc.

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

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

您可以查看https://stackoverflow.com/a/3876446/1959508了解更多信息

答案 1 :(得分:0)

我遇到了同样的问题,刚刚完成了你的目标。

我称这个功能......

imagecopymerge($dest, $src, $x_pos, $y_pos, 0, 0, $src_width, $src_height, 100);

...其中$src是由imagecreatetruecolor()创建的图像资源(在我的情况下,因此不确定这是否是强制性的)然后由imagecopyresampled()编辑。

我的完整代码块是......

    $image_resized = imagecreatetruecolor($final_width, $final_height);
    if (($info[2] == IMAGETYPE_GIF) || ($info[2] == IMAGETYPE_PNG)) {
        $transparency = imagecolortransparent($image);
        $palletsize = imagecolorstotal($image);

        if ($transparency >= 0 && $transparency < $palletsize) {
            $transparent_color = imagecolorsforindex($image, $transparency);
            $transparency = imagecolorallocate($image_resized, $transparent_color['red'], $transparent_color['green'], $transparent_color['blue']);
            imagefill($image_resized, 0, 0, $transparency);
            imagecolortransparent($image_resized, $transparency);
        } elseif ($info[2] == IMAGETYPE_PNG) {
            imagealphablending($image_resized, false);
            $color = imagecolorallocatealpha($image_resized, 0, 0, 0, 127);
            imagefill($image_resized, 0, 0, $color);
            imagesavealpha($image_resized, true);
        }
    }
    imagecopyresampled($image_resized, $image, 0, 0, $cropWidth, $cropHeight, $final_width, $final_height, $width_old - 2 * $cropWidth, $height_old - 2 * $cropHeight);

// Make white colour transparent
        $transparency_color_id = imagecolorallocate($src, 255, 255, 255);
        $res = imagecolortransparent($src, $transparency_color_id);

$dest = imagecreatefromjpeg($bg_image_dir . $bg_image_filename); 

$x_pos = 1400 - $prod_image_right_margin - $src_width;
        $y_pos = (700 - $src_height) / 2;
        imagecopymerge($dest, $src, $x_pos, $y_pos, 0, 0, $src_width, $src_height, 100);

...希望你能从中得到你需要的东西。