[email protected] Posted August 18, 2010 Share Posted August 18, 2010 Hi, I have a pretty simple application that allows my users to upload images and i'm able to succesfull upload images to a new dir to be outputted. But as to save on download time and server space is there a simple piece of code I can add to the below code that will resize every image on uploded to 460(w) x 300 (h) from my users <?php if ((($_FILES["article_image"]["type"] == "image/gif") || ($_FILES["article_image"]["type"] == "image/jpeg") || ($_FILES["article_image"]["type"] == "image/pjpeg")) && ($_FILES["article_image"]["size"] < 5000000)) { move_uploaded_file($_FILES["article_image"]["tmp_name"], "images/" . $_FILES["article_image"]["name"]); } ?> Thanks in advance for any help and suggestions Link to comment https://forums.phpfreaks.com/topic/211084-help-resizing-an-images/ Share on other sites More sharing options...
litebearer Posted August 18, 2010 Share Posted August 18, 2010 http://www.nstoia.com/toh/imageresize.php Link to comment https://forums.phpfreaks.com/topic/211084-help-resizing-an-images/#findComment-1100846 Share on other sites More sharing options...
[email protected] Posted August 19, 2010 Author Share Posted August 19, 2010 Thank you for pointing me to this website, how would i go about implementing it with my original code posted? Thanks, Link to comment https://forums.phpfreaks.com/topic/211084-help-resizing-an-images/#findComment-1101154 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.