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
This line by default use limited memory:
Imagine/src/Gd/Image.php
Line 763 in 922e032
What I get:
What we like to get:
This fix temporary to use all machine memory if application setup is less than needed:
$memory = ini_get('memory_limit'); ini_set('memory_limit', '-1'); $resource = imagecreatetruecolor($size->getWidth(), $size->getHeight()); ini_set('memory_limit', $memory);
There is solution that throw error when memory size isn't enought: https://www.php.net/manual/en/function.imagecreatetruecolor.php#99623
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This line by default use limited memory:
Imagine/src/Gd/Image.php
Line 763 in 922e032
What I get:
What we like to get:
This fix temporary to use all machine memory if application setup is less than needed:
There is solution that throw error when memory size isn't enought:
https://www.php.net/manual/en/function.imagecreatetruecolor.php#99623
The text was updated successfully, but these errors were encountered: