【发布时间】:2019-06-22 12:08:28
【问题描述】:
当我上传图片(4480px X 5808px)大小 757KB 时出现错误和
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 8192 bytes) in /home/dygnmuu4/public_html/cuisinecanvas.com/application/controllers/Food_blogger.php on line 128
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 32768 bytes) in /home/dygnmuu4/public_html/cuisinecanvas.com/system/core/Exceptions.php on line 1
当我尝试上传图片时(4480px X 4368px)大小 4.2MB 上传成功
我还将 upload_max_filesize = 64M 设置为 php.ini
PHP 代码:
list($w, $h) = getimagesize($tmpfile);
if ($w < $h){
/* line: 128 */ $image = imagecrop($image, array("x" => 0, "y" => ($h - $w) / 2, "width" => $w, "height" => $w));
}else if ($h < $w){
$image = imagecrop($image, array("x" => ($w - $h) / 2, "y" => 0, "width" => $h, "height" => $h));
}
【问题讨论】:
标签: php codeigniter cpanel