我打算使用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);
有沒有人可以幫助我使它工作?謝謝。
似乎是一個老問題了,這裏是一個工作 - 周圍:http://www.sitepoint.com/forums/showthread.php?177162-imagerotate-and-alpha-transparency –
感謝您的答覆,但代碼不適合我。我想知道爲什麼我在輪換之後失去了所有的透明度。 – CharlesDou