tommy20 Posted November 17, 2009 Share Posted November 17, 2009 I have a script that resizes pictures when you upload them. The problem that I am getting is that if I try upload a relatively small file size 1mb the script will not resize the picture properly. Is there anyway of slowing down how quick php runs so that it will have time to resize the pictures Quote Link to comment https://forums.phpfreaks.com/topic/181921-slow-down-php-timeout/ Share on other sites More sharing options...
Alex Posted November 17, 2009 Share Posted November 17, 2009 Your problem isn't with how fast PHP runs, it's more than likely a problem with your code. Post your code so we can help you correct it. Quote Link to comment https://forums.phpfreaks.com/topic/181921-slow-down-php-timeout/#findComment-959605 Share on other sites More sharing options...
tommy20 Posted November 18, 2009 Author Share Posted November 18, 2009 The code is // rename image to something else so it does get mixed up with oter variables called image // The file $filename = "./images/$horseid.jpg"; // Set a maximum height and width $width = 600; $height = 600; // Content type header('Content-type: image/jpeg'); // Get new dimensions list($width_orig, $height_orig) = getimagesize($filename); $ratio_orig = $width_orig/$height_orig; if ($width/$height > $ratio_orig) { $width = $height*$ratio_orig; } else { $height = $width/$ratio_orig; } // Resample $image_p = imagecreatetruecolor($width, $height); $image = imagecreatefromjpeg($filename); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig); $savelocation="./images/$horseid.jpg"; // Output imagejpeg($image_p, $savelocation, 100); // repeat to create small file // The file $filename = "./images/$horseid.jpg"; // Set a maximum height and width $width = 300; $height = 200; // Content type header('Content-type: image/jpeg'); // Get new dimensions list($width_orig, $height_orig) = getimagesize($filename); $ratio_orig = $width_orig/$height_orig; if ($width/$height > $ratio_orig) { $width = $height*$ratio_orig; } else { $height = $width/$ratio_orig; } // Resample $image_small = imagecreatetruecolor($width, $height); $image = imagecreatefromjpeg($filename); imagecopyresampled($image_small, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig); $savelocation="./images/".$horseid."_small.jpg"; // Output imagejpeg($image_small, $savelocation, 100); Quote Link to comment https://forums.phpfreaks.com/topic/181921-slow-down-php-timeout/#findComment-960342 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.