使用 imagecreatefromjpeg() 函数时 PHP 中的图像上传错误

发布于 2024-07-25 02:08:43 字数 322 浏览 8 评论 0原文

我正在调整上传的图像的大小,并在使用函数 imagecreatefromjpeg() 调整大小后创建一个新图像,

我也能够成功地调整大尺寸图像的大小。

但是,当我尝试上传大小超过 1.5 MB 左右的图像时,出现以下错误

致命错误:允许的内存大小 33554432 字节耗尽(尝试分配 12288 字节)

即使我的图像大小小于 2 MB,也会出现上述错误

有人能告诉我哪里出了问题吗?

我真的很感激

谢谢,

Gnanesh

I am resizing an image that is uploaded and I am creating a new image after resize using the function imagecreatefromjpeg()

I have been able to successfully resize images of huge dimensions as well.

But when I am try and upload an image having a size above 1.5 MB or so, I get the following error

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 12288 bytes)

The above error comes even if my image size is less than 2 MB

Can anyone tell where am I going wrong here?

I would really appreciate it

Thanks,

Gnanesh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转角预定愛 2024-08-01 02:08:43

您需要增加 PHP 可用的内存量。 尝试将此行添加到您的 .htaccess 中,它解决了我的问题:

php_value memory_limit 64M

You need to increase the amount of memory available to PHP. Try adding this line into your .htaccess, it fixed the problem for me:

php_value memory_limit 64M
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文