You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v2 had the destroy() function which could free up memory associated with the image instance before the PHP script ended. Is this not necessary anymore for some reason, or just currently not possible with v3?
The text was updated successfully, but these errors were encountered:
Intervention Image is a wrapper providing a unified API for GD and Imagick Library. The library is therefore dependent on the functions provided by the extensions.
GD Library's imagedestroy() no longer has an effect since PHP 8, so I have decided to remove support.
I would suggest just trying to set the image variable to null or use unset() to free memory.
v2 had the destroy() function which could free up memory associated with the image instance before the PHP script ended. Is this not necessary anymore for some reason, or just currently not possible with v3?
The text was updated successfully, but these errors were encountered: