I am using a standard form to upload a file, but I want to resize it
before I store it.
I have this part
move_uploaded_f ile($_FILES['picture_name']['tmp_name'],
'images/foo.jpeg');
I do not know what to put for $source_jpeg in...
imagecopyresamp led($image_dest , $source_jpeg, 0, 0, 0, 0, $new_width,
$new_height, $width_orig, $height_orig);
Thanks
before I store it.
I have this part
move_uploaded_f ile($_FILES['picture_name']['tmp_name'],
'images/foo.jpeg');
I do not know what to put for $source_jpeg in...
imagecopyresamp led($image_dest , $source_jpeg, 0, 0, 0, 0, $new_width,
$new_height, $width_orig, $height_orig);
Thanks
Comment