Open olivervogel opened 9 months ago
Optimized Image Decoding - Previously file paths were read via file_get_contents()
and are passed to the BinaryImageDecoder::class
instead of handling the paths directly, which is more efficient
This is now handled without reading to whole image via file_get_contents()
See https://github.com/Intervention/image/commit/d27fdd75e583dc0155548a86b4d93fe22b6af276, https://github.com/Intervention/image/commit/03a59283c3fc427c176dc411eb2a441a2d3c4488
AbstractDecoder::extractExifData()
now uses either file paths or binary data as direct input for exif_read_data()
, instead of always creating a file pointer and reading from it as before.
Describe the feature you'd like General optimization of RAM consumption.