Hey bazı sorun, ben ondan bir küçük resim oluşturmak zaman png şeffaflığı korumak için bu olan herkes herhangi bir deneyime sahip çalışıyorsun? Herhangi bir yardım büyük olurdu, burada ben şu anda ne yapıyorum bulunuyor:
$fileName= "../js/ajaxupload/tees/".$fileName;
list($width, $height) = getimagesize($fileName);
$newwidth = 257;
$newheight = 197;
$thumb = imagecreatetruecolor($newwidth, $newheight);
imagealphablending($thumb, true);
$source = imagecreatefrompng($fileName);
imagealphablending($source, true);
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
imagesavealpha($thumb, true);
imagepng($thumb,$newFilename);