Trying to upload a 1M file locally and i get a Fatal Error - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T20:17:52Zhttp://stackoverflow.com/feeds/question/301922http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301922/trying-to-upload-a-1m-file-locally-and-i-get-a-fatal-error2Trying to upload a 1M file locally and i get a Fatal ErrorDrew2008-11-19T13:43:28Z2008-11-19T17:24:21Z
<p>"Fatal error: Allowed memory size of 31457280 bytes exhausted (tried to allocate 9828 bytes)".</p>
<p>This is the error i get but I am only trying to upload a 1mb image. I have increased the memory limit in php.ini and the execution time. I am trying this on a local MAMP server, on a Mac using firefox. This going to be for an online image gallery.
Any ideas?
Below is the code:</p>
<pre><code> ini_set("memory_limit","30M");
if(isset($_POST['submit'])){
if (isset ($_FILES['new_image'])){
$imagename = $_FILES['new_image']['name'];
$source = $_FILES['new_image']['tmp_name'];
$target = "images/".$imagename;
move_uploaded_file($source, $target);
$imagepath = $imagename;
//below here for the removed code
$save = "thumbs/uploads/" . $imagepath; //This is the new file you saving
$file = "images/" . $imagepath; //This is the original file
$imagesize = getimagesize($file);
list($width, $height) = $imagesize;
unset($imagesize);
if($width>$height)
{
$modwidth = 150;
$diff = $width / $modwidth;
$modheight = $height / $diff;
}else{
$modheight = 150;
$diff = $height / $modheight;
$modwidth = $width / $diff;
}
$tn = imagecreatetruecolor($modwidth, $modheight);
$image = imagecreatefromjpeg($file);
$imagecopy = imagecopyresampled($tn, $image, 0, 0, 0, 0, $modwidth, $modheight, $width, $height);
imagedestroy($image);
imagedestroy($im);
imagedestroy($imagecopy);
imagedestroy($source);
$imagejpg = imagejpeg($tn, $save, 100);
imagedestroy($tn);
imagedestroy($imagejpg);
</code></pre>
<p><hr /></p>
<p>EDIT</p>
<p>This has now been sorted out hopefully. One of my colleagues had a solution all along but neglected to tell me!</p>
http://stackoverflow.com/questions/301922/trying-to-upload-a-1m-file-locally-and-i-get-a-fatal-error/301929#3019294Answer by Michael Madsen for Trying to upload a 1M file locally and i get a Fatal ErrorMichael Madsen2008-11-19T13:47:28Z2008-11-19T13:47:28Z<p>You're likely loading the image to do some manipulation of it. That causes the image data to be decompressed, which requires a lot of memory for big images (I think it's about 4 bytes per pixel).</p>
<p>You can choose to either not process the image, or do your processing outside of PHP - for example by invoking ImageMagick or some other program. It depends a bit on what you're trying to accomplish.</p>
http://stackoverflow.com/questions/301922/trying-to-upload-a-1m-file-locally-and-i-get-a-fatal-error/301932#3019320Answer by daniels for Trying to upload a 1M file locally and i get a Fatal Errordaniels2008-11-19T13:48:12Z2008-11-19T14:00:21Z<p>Did you restart apache after you increased the memory limit?
If yes, then increase a little more.</p>
http://stackoverflow.com/questions/301922/trying-to-upload-a-1m-file-locally-and-i-get-a-fatal-error/301942#3019421Answer by VonC for Trying to upload a 1M file locally and i get a Fatal ErrorVonC2008-11-19T13:52:30Z2008-11-19T13:59:04Z<p>As mentioned <a href="http://bytes.com/forum/thread455194.html" rel="nofollow">here</a>:</p>
<blockquote>
<p>don't forget the <a href="http://us.php.net/imagedestroy" rel="nofollow">imagedestroy</a>() function, or caching your thumbnails - they'll save you a LOT of work down the road.</p>
</blockquote>
http://stackoverflow.com/questions/301922/trying-to-upload-a-1m-file-locally-and-i-get-a-fatal-error/302209#3022093Answer by Ciaran McNulty for Trying to upload a 1M file locally and i get a Fatal ErrorCiaran McNulty2008-11-19T15:18:57Z2008-11-19T15:18:57Z<p>It's nothing to do with the (file)size of the image you're uploading, the call that's breaking your memory limit is imagecreatetruecolor().</p>
<p>imagecreatetruecolor() will allocate an area of memory to store a true colour image in with <em>no</em> compression, and use 32 bits (4 bytes) per pixel.</p>
<p>So for a 1024x768 pixel image, for example, imagecreatetruecolour() will use up 1024*768*4 = 3145728 bytes, or around 3MB.</p>
<p>The problem is that this scales up quite dramatically. A 3072x2034 (6 megapixel) image, by the same sort of calculation, needs around 24MB just to be loaded into memory - I would guess this is the sort of size you're dealing with.</p>
<p>The solution is to hand off the processing to something else like imagemagick or NetPBM that will run as a separate process and not count towards the PHP memory limit.</p>
<p><a href="http://netpbm.sourceforge.net/" rel="nofollow">NetPBM</a> is my personal favourite and would look something like:</p>
<pre><code>anytopnm <file> | pnmscale -xysize <dimensions> | pnmtojpg > <outfile>
</code></pre>