0

朋友们,我想从多个透明 PNG 图像生成一个 png 图像,但问题是我只能生成最后一个图像

两个图像不能合并。

我的代码如下

$x = 363;
$y = 267;

$im_dest = imagecreatetruecolor ($x, $y);
imagealphablending($im_dest, false);

$im = imagecreatefrompng('2.png');
$im1 = imagecreatefrompng('1.png');

imagecopy($im_dest, $im1, 0, 0, 0, 0, $x, $y);
imagecopy($im_dest, $im, 0, 0, 0, 0, $x, $y);

imagesavealpha($im_dest, true);
imagepng($im_dest, 'small_redfade.png');

这些是我用来加入单个图像的图像

http://s11.postimg.org/h6lui7yjn/image.png

http://s21.postimg.org/o7zdnwcnb/image.png

4

2 回答 2

2

这是有效的代码:

$width = 210;
$height = 190;

$layers = array();
$layers[] = imagecreatefrompng("img/01_boy_faceB.png");
$layers[] = imagecreatefrompng("img/01_boy_hairB.png");

$image = imagecreatetruecolor($width, $height);

// to make background transparent
imagealphablending($image, false);
$transparency = imagecolorallocatealpha($image, 0, 0, 0, 127);
imagefill($image, 0, 0, $transparency);
imagesavealpha($image, true);

/* if you want to set background color
$white = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $white);
*/

imagealphablending($image, true);
for ($i = 0; $i < count($layers); $i++) {
    imagecopy($image, $layers[$i], 0, 0, 0, 0, $width, $height);
}
imagealphablending($image, false);
imagesavealpha($image, true);

imagepng($image, 'final_img.png');

?>
于 2014-04-03T17:42:30.730 回答
1

ImageMagick::Composite可以处理这个问题,遗憾的是在 GD 中没有这样做,所以让其他人解释如何在那里做。

就像是:

<?php

$firstImage = new Imagick("firstImage.png");
$secondImage = new Imagick("secondImage.png");

$firstImage->compositeImage($secondImage, Imagick::COMPOSITE_COPYOPACITY, 0, 0 );

header('Content-type: image/png');
echo $firstImage;

?>

这应该保留 alpha。

于 2013-04-18T11:52:25.330 回答