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
Is your feature request related to a problem? Please describe.
When processing large images, they can cause PHP to run out of memory as the image file is read in as a binary string.
Describe the solution you'd like
When using entirely external commands (e.g. imagick, pngquant, etc), never read the file into memory but work exclusively with temp files.
to have $newBin be another FileBinary. This could also be extended to the media/cache endpoint, allowing for its FlySystem integration to use ->writeStream when uploading.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When processing large images, they can cause PHP to run out of memory as the image file is read in as a binary string.
Describe the solution you'd like
When using entirely external commands (e.g. imagick, pngquant, etc), never read the file into memory but work exclusively with temp files.
Basically, I'd like
to have
$newBin
be anotherFileBinary
. This could also be extended to themedia/cache
endpoint, allowing for its FlySystem integration to use->writeStream
when uploading.The text was updated successfully, but these errors were encountered: