我打算使用 php gd 旋转具有透明颜色的图像。但是,旋转后,图像中的透明颜色不再透明,背景也不透明。这是我的代码。
$im = imagecreatefromgif('/images/80-2.gif');
$rotate = imagerotate($im,30,imagecolorallocatealpha($im, 0, 0, 0, 127));
imagegif($rotate,'/images/rotate.gif');
imagedestroy($im);
imagedestroy($rotate);
有人可以帮我让它工作吗?谢谢。