Jump to content

Resizing an image on upload?


Solarpitch

Recommended Posts

Guys,

 

How do you simply resize an image when its uploaded. I would like to resize all images to 200 x 200. I am kinda resizing it at the moment but its loosing its quality.

 

Oh .. and is there a way I can display the full size images on a new page when the user clicks on it?

Link to comment
Share on other sites

I am just using this basic upload script but I will modify it as I go. Where about would I need to ad the code to resize?

 


if (($_FILES["userfile"]["type"] == "image/gif")
|| ($_FILES["userfile"]["type"] == "image/jpeg")
|| ($_FILES["userfile"]["type"] == "image/pjpeg")
&& ($_FILES["userfile"]["size"] < 20000))
  {
  if ($_FILES["userfile"]["error"] > 0)
    {
    echo "Return Code: " . $_FILES["userfile"]["error"] . "<br />";
$execute = "no";
    }
  else
    {
    echo "Upload: " . $_FILES["userfile"]["name"] . "<br />";
    echo "Type: " . $_FILES["userfile"]["type"] . "<br />";
    echo "Size: " . ($_FILES["userfile"]["size"] / 1024) . " Kb<br />";
    echo "Temp file: " . $_FILES["userfile"]["tmp_name"] . "<br />";

    if (file_exists("user_images/" . $_FILES["userfile"]["name"]))
      {
      echo $_FILES["userfile"]["name"] . " already exists. ";
  $execute = "no";
      }
    else
      {
      move_uploaded_file($_FILES["userfile"]["tmp_name"],
      "user_images/" . $_FILES["userfile"]["name"]);
      echo "Stored in: " . "user_images/" . $_FILES["userfile"]["name"];
  
  $target = "user_images/";
      $target = $target . basename( $_FILES['userfile']['name']) ;
  
      }
    }
  }


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.