View Single Post
Old 07-31-2009, 09:04 AM   PM User | #2
thales.jacobi
New to the CF scene

 
Join Date: Jul 2009
Posts: 4
Thanks: 0
Thanked 1 Time in 1 Post
thales.jacobi is an unknown quantity at this point
$big_file=$_FILES['file']['tmp_name'];
$new_file='/tmp/thumbnail.jpg';

copy($big_file, $new_file);

$thumb_width=50;
$thumb_height=35;

$thumb = imagecreatetruecolor($thumb_width,$thumb_height);
$source = imagecreatefromjpeg($big_file);
imagecopyresized($thumb,$source,0,0,50,35,$thumb_width,$thumb_height,188,188);

imagejpeg($thumb,$new_file);
thales.jacobi is offline   Reply With Quote