【发布时间】:2013-11-25 11:19:50
【问题描述】:
我有一个调整上传图片大小的脚本。它适用于 PNG 和 JPG,但对于 GIF,它会将调整大小的 GIF 的透明度呈现为黑色。
$src = imagecreatefromgif($file);
$dst = imagecreatetruecolor($newWidth, $newHeight);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);
imagegif($dst, $file);
【问题讨论】:
-
只要搜索"php imagecopyresampled transparent gif"。很多结果,有些甚至在手册页上