Prova sostituendo
Codice PHP:
$dst_img ImageCreateTrueColor($thumb_w$thumb_h);

imagecopyresampled($dst_img,$src_img,0,0,0,0,$thumb_w$thumb_h,$old_x$old_y); 
con
Codice PHP:
$dst_img imagecreatetruecolor($thumb_w$thumb_h);
imagealphablending($dst_imgfalse);

imagecopyresampled($dst_img,$src_img,0,0,0,0,$thumb_w$thumb_h,$old_x$old_y);
imagesavealpha($dst_imgtrue);