gd-lib thumbnail
øhm... jeg skal lave nogle thumbnails af billeder men kan ikke få det til at virke?!$DIR_USER_PIC = 'pic/user/';
header("content-type: image/jpeg");
$image_src = imagecreatefromjpeg($DIR_USER_PIC.$_GET['user_id'].'.jpg');
$width_src = imagesx($image_src);
$height_src = imagesy($image_src);
$image = imagecreatetruecolor($width, $height);
imagecopyresized($image, $image_src, 0, 0, 0, 0, $width, $height, $width_src, $height_src);
imagejpeg($image);
