Jump to content

help resizing an images


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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.