I am receiving this error when Im trying to crop a image, I just uploaded. The image i just uploaded is around 3MB.
Here's the error
<br />
<b>Fatal error</b>: Out of memory (allocated 45088768) (tried to allocate 15552 bytes) <br />
And its happening when im trying to use this function: imagecreatefromjpeg($src);
I have at top:
ini_set('memory_limit', '256M');
So how can it be out of memory, and how should i solve this? My limit for a image upload standard 6MB. (Although it uploads fine to the server, but when i use crop, I get error on the line with imagecreatefromjpeg() function, and "out of memory..")
ini_set('memory_limit', -1);what happens? This should disable the limit. Also, what version of PHP are you using and what OS? – lonesomeday Nov 11 '10 at 20:35