3

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

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

有没有办法在不将生成的图像写入磁盘的情况下做到这一点?谢谢。射线

4

2 回答 2

0

我有同样的问题,刚刚完成了你所追求的。

我称这个函数...

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

...$srcimagecreatetruecolor()and 创建的图像资源在哪里(在我的情况下,所以不确定这是否是强制性的)然后由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);

...所以希望你能从中挖掘出你需要的东西。

于 2014-12-12T00:38:33.670 回答
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了解更多信息

于 2013-09-11T21:18:13.343 回答