Чтобы вернуть прозрачность к png картинкам нужно
Следующий код:
$im1 = imagecreatetruecolor($tn_width, $tn_height); imagecopyresized($im1, $im, 0, 0, 0, 0, $tn_width, $tn_height, $width, $height);
Заменяем на:
$im1 = imagecreatetruecolor($tn_width, $tn_height); $background = imagecolorallocate($im1, 255, 255, 255); imagecolortransparent($im1, $background); imagealphablending($im1, false); imagesavealpha($im1, true); imagecopyresized($im1, $im, 0, 0, 0, 0, $tn_width, $tn_height, $width, $height);