0

所以我从 PHP Doc 和一些有用的线程/建议创建了一个脚本,并得出了这个:

$filename = time();

$glassurl = $_GET['GlassImg'];
$frameurl = $_GET['FrameImg'];
$handleurl = "images/helpbutton.png";
$handleurl2 = "images/helpbutton.png";

$glassimg = imagecreatefromjpeg($glassurl);
$frameimg = imagecreatefromgif($frameurl);
$handleimg = imagecreatefrompng($handleurl);
$handleimg2 = imagecreatefrompng($handleurl2);

$frame_x = imagesx($frameimg);
$frame_y = imagesy($frameimg);
imagecopymerge($glassimg, $frameimg, 0, 0, 0, 0, $frame_x, $frame_y, 100);

imagecolortransparent($handleimg, imagecolorat($handleimg, 0, 0));
imagecolortransparent($handleimg2, imagecolorat($handleimg2, 0, 0));

$handle_x = imagesx($handleimg);
$handle_y = imagesy($handleimg);
imagecopymerge($glassimg, $handleimg, 460, 150, 0, 0, $handle_x, $handle_y, 100);


$handle2_x = imagesx($handleimg2);
$handle2_y = imagesy($handleimg2);
imagecopymerge($glassimg, $handleimg2, 5, 5, 0, 0, $handle2_x, $handle2_y, 100);

// Output and free from memory
imagepng($glassimg, "uploads/$filename.png");

imagedestroy($glassimg);
imagedestroy($frameimg);
imagedestroy($handleimg);
imagedestroy($handleimg2);

它几乎可以完美运行,但是有一个小问题。helpbutton.png 只是一个占位符图像,可以看到我可以定位图像并合并它们,最终会产生一个纯黑色阴影,导致图像看起来很糟糕。

这应该是这样的:

帮助按钮.png

这是合并后的结果:

帮助结果.png

我研究了很多图像控件,包括混合等,但似乎没有一个会影响它。有谁知道如何控制在 PHP 中不应该变暗的阴影?

4

1 回答 1

0

imagesavealpha($res, true)&imagealphablending($res, false)派上用场,当您保存带有 alpha 通道的 png 图像时(尤其是从 jpeg 打开时)。

编辑:试试这个:

$glassimg = imagecreatefromjpeg($glassurl);
imagealphablending($glassimg, false);
imagesavealpha($glassimg, true)

$frameimg = imagecreatefromgif($frameurl);
imagealphablending($frameimg, false);
imagesavealpha($frameimg, true)

$handleimg = imagecreatefrompng($handleurl);
imagealphablending($handleimg, false);
imagesavealpha($handleimg, true)

$handleimg2 = imagecreatefrompng($handleurl2);
imagealphablending($handleimg2, false);
imagesavealpha($handleimg2, true)
于 2012-10-22T12:48:16.167 回答