所以我从 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 只是一个占位符图像,可以看到我可以定位图像并合并它们,最终会产生一个纯黑色阴影,导致图像看起来很糟糕。
这应该是这样的:
这是合并后的结果:
我研究了很多图像控件,包括混合等,但似乎没有一个会影响它。有谁知道如何控制在 PHP 中不应该变暗的阴影?