最近、アバターをアップロードする際にカットを使用していますが、GIFやPNGが透明であれば、カット後は黒い背景画像になります。
?
解決策は 2 つあります:
?
1. 背景画像を白い背景で塗りつぶします。
?
$white = imagecolorallocate($dstim,255,255,255); imagefilledrectangle($dstim,0,0,$width,$height,$white); imagecolortransparent($dstim,$white);
?
2. 透明チャンネルを使用するように画像を設定します。
?
$img = imagecreatefrompng($src); imagesavealpha($img,true);//这里很重要; $thumb = imagecreatetruecolor(300,300); imagealphablending($thumb,false);//这里很重要,意思是不合并颜色,直接用$img图像颜色替换,包括透明色; imagesavealpha($thumb,true);//这里很重要,意思是不要丢了$thumb图像的透明色; imagecopyresampled($thumb,$img,0,0,0,0,300,300,300,300); imagepng($thumb,"temp.png");
?
上記の 2 つの方法は両方とも正常にテストされました。