[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.8

Image crop and resize on upload

Asked by universe3d in PHP Scripting Language, WebApplications, Miscellaneous Web Development

Tags: php, crop, image, resize, upload

Hello,

Searching in experts-exhange answers I found the php part of the following code(and modify it a bit):
      
$tpath = "C:/AppServ/www/personal_website/03/resize/uploads";//thumbnails path
     
     //check for uploaded file from form
     if ($_FILES['image1'] != "") {
     
     //name of uploaded image selected from form
     $img = $_FILES['image1']['tmp_name'];
     //name for created thumbnail
     $img_name = $_FILES['image1']['name'];
     
        $dimensions = GetImageSize($img);
   
    $thname = "$tpath/$img_name";
   
    $w=$dimensions[0];
    $h=$dimensions[1];
   
    $img2 = ImageCreateFromJPEG($img);
   
    //set new proportional height $nh and width $nw
    //if image is wider than it is tall
    if ($w < $h){
    $nw = 100;
    $nh = $h * $nw / $w;
    $sw = 0;
    $sh = ($nh/2)-50;
    }
    //if image is taller than it is wide
    if ($w > $h){
    $nh = 100;
    $nw = $w * $nh / $h;
    $sh = 0;
    $sw = ($nw/2)-50;
    }
    //if image is square
    if ($w == $h){
    $nw = 100;
    $nh = 100;
    $sw = 0;
    $sh = 0;
    }
   
    $thumb = imagecreatetruecolor(100,100);
    $thumb1 = imagecreatetruecolor($nw,$nh);
    ImageCopyResampled($thumb1,$img2,0,0,0,0,$nw,$nh,$w,$h);    
    imagecopyresized ($thumb, $thumb1, 0, 0, $sw, $sh, 100, 100, 100, 100);
    ImageJPEG($thumb,$thname,90); //stores thumbnail
    imagedestroy($img2);
   
    //store the full-size image
   copy($_FILES['myfile']['tmp_name'], "C:/AppServ/www/personal_website/03/resize/uploads".$_FILES['myfile']['name'])
          or die("Couldn't copy the full-size file!");
   
    } else {
         
         die("No input file specified");
    }
      }
?>
<html>
<head>
</head>
<body>
<form action="resize.php"  method="post" enctype="multipart/form-data">
Select file to upload:
<input type="file" name="image1"  />
<input type="hidden" name="submit_img" value="1" />
<input type="submit" name="submit" value="submit" />
</form>
</body>
</html>

I have a directory called uploads and there I want to store the uploaded files (not-edited). I also have a directory called thumbs(inside uploads) where I want to store the edited images. Also I want to be able to adjust the crop, resize dimensions dynamically with some text fields asking the user to put the new image dimensions instead from having to edit the php file
Can you provide a complete php code for the above?
[+][-]10/14/07 11:40 AM, ID: 20074509Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: PHP Scripting Language, WebApplications, Miscellaneous Web Development
Tags: php, crop, image, resize, upload
Sign Up Now!
Solution Provided By: frindo
Participating Experts: 1
Solution Grade: A
 
[+][-]10/14/07 04:17 AM, ID: 20073388Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/14/07 07:58 AM, ID: 20073937Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/23/08 11:42 PM, ID: 22557314Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]09/28/08 06:52 AM, ID: 22590970Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 / EE_QW_2_20070628