Código PHP:
$path = "/screenshots/2008/";
$thumbs = "thumbs/";
$link_up =$_FILES['screen']['name']
// Thumbnail de 120x90 px
$thumb=new thumbnail("./".$path . $link_up.".jpg";
$thumb->size_auto(120);
$thumb->jpeg_quality(75);
$thumb->save("./".$path.$thumbs. $link_up.".jpg";
// Thumbnail de 640x480 px
$thumb640 =new thumbnail("./".$path . $link_up.".jpg";
$thumb640 ->size_auto(640);
$thumb640 ->jpeg_quality(75);
$thumb640 ->save("./".$path.$thumbs. $link_up."_640x480.jpg";