phpthumb diye bir kütüphane var. İndirip aşağıdaki kodları kullanın.
require 'phpThumb/phpthumb.class.php';
$image_dir = 'images/';
if (move_uploaded_file($_FILES['resim']['tmp_name'], $image_dir . $_FILES['resim']['name']))
{
$phpthumb = new phpThumb();
$phpthumb->setSourceFilename($image_dir . $_FILES['resim']['name']);
$phpthumb->setParameter('f', 'png');
$phpthumb->setParameter('w', '300');
if ($phpthumb->GenerateThumbnail()) {
$phpthumb->RenderToFile($image_dir . $_FILES['resim']['name']);
}
}Dosya ve değişken isimlerini kendi sisteminize göre düzenlemeyi unutmayın.