imagecreatefromjpeg返回500内部服务器错误问题

时间:2016-12-19 07:36:59

标签: php

我有一些代码可以为图像添加一些标题:

档案内容

<?php
$im = imagecreatefromjpeg($filepath);//full path
imagejpeg($im);
imagedestroy($im);
?>

此imagecreatefromjpeg函数在图像较大时给出内部服务器错误。否则工作

所以我试图增加内存限制

ini_set('memory_limit', '1024M'); // or you could use 1G

但同样的问题。有解决方案吗感谢

更新

错误是

Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 51024 bytes)

图片尺寸:

宽度:12756 px

高度:22677 px

尺寸:11.6 MB

0 个答案:

没有答案