We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在当前版本中,操作文件过大和分辨率过大的文件,会达到内存限制,而造成程序中断,但并未抛出任何异常和错误。
经逐步排查后,在Image类构造方法中,调用imagecreatefromJpeg方法时造成了如下错误,
imagecreatefromJpeg
Allowed memory size of 52428800 bytes exhausted (tried to allocate 32768 bytes) in ...... /topthink/think-image/src/Image.php on line 82
随后修改了memory_limit大小解决了问题。
memory_limit
但此处是不是应该抛出异常错误呢?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在当前版本中,操作文件过大和分辨率过大的文件,会达到内存限制,而造成程序中断,但并未抛出任何异常和错误。
经逐步排查后,在Image类构造方法中,调用
imagecreatefromJpeg
方法时造成了如下错误,随后修改了
memory_limit
大小解决了问题。但此处是不是应该抛出异常错误呢?
The text was updated successfully, but these errors were encountered: