我创建了一个 PNG 图像(createimagefrompng()),但透明度不起作用。
如何得到这份工作?
编辑:我的脚本:
<?php
header("Content-type: image/png");
$bg = imagecreatefrompng('banner_bg.png'); // Background Image
$image = imagecreatefrompng('http://<link>/image.png');
$wit = imagecolorallocatealpha($bg, 255, 255, 255, 127);
imagecolortransparent($bg, $wit);
imagealphablending($obe, false);
imagecopy($image, $bg, 0, 0, 20, 13, 80, 40);
imagegif($bg);
imagedestroy($bg);
imagedestroy($image);
?>
- - - 对不起,我的英语不好。