Jump to content

help resizing an images


stevenlafferty@hotmail.co

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.