您仍然必须在新图像中设置透明度。以下内容取自php 文档:
<?php
// Create a 55x30 image
$im = imagecreatetruecolor(55, 30);
$red = imagecolorallocate($im, 255, 0, 0);
$black = imagecolorallocate($im, 0, 0, 0);
// Make the background transparent
imagecolortransparent($im, $black);
// ^^ This is the command you are missing.
// Draw a red rectangle
imagefilledrectangle($im, 4, 4, 50, 25, $red);
// Save the image
imagepng($im, './imagecolortransparent.png');
imagedestroy($im);
?>
在您的情况下,您想让透明度与原始透明度的颜色相同 - 我总是制作一个可怕的紫色或其他东西,a)在我的图像处理软件中像拇指酸痛一样突出,其次,有一个 RGB 键几乎不可能错误地包含在图像中。