- ivnish Kazakhstan
Automatically closed because Drupal 7 security and bugfix support has ended β as of 5 January 2025. If the issue verifiably applies β to later versions, please reopen with details and update the version.
Non-local image files (that do not have a realpath) are not loaded and moving image files to their permanent destination (S3) results in an error, due to the format prefix (e.g. "JPEG:/tmp/image.png").
For loading the remote file, conduct a check similar to the one at the beginning of image_imagick_save()
and open a regular file stream for reading only, feeding it to the ImageMagick object.
For the file move on save, simply remove the format prefix before calling file_unmanaged_move()
in image_imagick_save()
.
image_imagick_load()
, check the resource returned by fopen()
and throw an exception on error.image_imagick_load()
, find out if a file name is desired (second argument taken by ImageMagick::readImageFile()
).N/A
N/A
N/A
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed because Drupal 7 security and bugfix support has ended β as of 5 January 2025. If the issue verifiably applies β to later versions, please reopen with details and update the version.