【发布时间】:2013-01-19 05:22:53
【问题描述】:
我正在尝试使用以下代码调整 PNG 透明图像的大小:
$src=ImageCreateFrompng($uploadedfile);
$background=imagecolorallocate($src,0,0,0);
imagecolortransparent($src,$background);
imagealphablending($src,false);
imagesavealpha($src,true);
$dst=ImageCreateTrueColor($tn_width,$tn_height);
imagecopyresampled($dst,$src,0,0,0,0,$tn_width,$tn_height,$width,$height);
Imagepng($dst,$dstfile);
我使用了imagealphablending($src,false) 和imagesavealpha($src,true),但它仍然会上传黑色背景的图像,而不是透明的。
问题出在哪里?
【问题讨论】:
标签: php image resize thumbnails transparent