I have this information about my servers php.ini
values set in it.
max_execution_time 30
memory_limit 256M
post_max_size 64M
When I try to make thumbnail of image its gives me error as follows...
Fatal error: Out of memory (allocated 27787264) (tried to allocate 15054336 bytes)
in......
image size is 8.81 MB.
This is my code-
$sizee = @getimagesize($newfilename);
switch ($sizee['mime']) {
case "image/jpeg" :
$srcImage = imagecreatefromjpeg($old);
break;
case "image/png":
$srcImage = imagecreatefrompng($old);
break;
case "image/gif":
$srcImage = imagecreatefromgif($old);
break;
}