<?php function createthumb($name,$filename,$new_w,$new_h){ $src_img=imagecreatefromjpeg($name); } $src_img=imagecreatefrompng($name); } $old_x=imageSX($src_img); $old_y=imageSY($src_img); if ($old_x > $old_y) { $thumb_w=$new_w; $thumb_h=$old_y*($new_h/$old_x); } if ($old_x < $old_y) { $thumb_w=$old_x*($new_w/$old_y); $thumb_h=$new_h; } if ($old_x == $old_y) { $thumb_w=$new_w; $thumb_h=$new_h; } $dst_img=ImageCreateTrueColor($thumb_w,$thumb_h); imagecopyresampled($dst_img,$src_img,0,0,0,0,$thumb_w,$thumb_h,$old_x,$old_y); { imagepng($dst_img,$filename); } else { imagejpeg($dst_img,$filename); } imagedestroy($dst_img); imagedestroy($src_img); } // Aktywacja: createthumb($uploaddir.$org,$thumbdir.$org,200,133); ?>
$org - to nazwa oryginalnego pliku. Plik miniaturki tworzy się, lecz jest CZARNY tzn brak kolorów. Wymiary dobre.
Proszę o pomoc