- Issue created by @solideogloria
- 🇨🇦Canada Nathan Tsai
FYI: We used simple_image_rotate to combat this issue :)
If an image is uploaded that has its EXIF orientation attribute set, and then you scale the image or otherwise do something to it that saves a new image, the EXIF attribute is not preserved, so the orientation is wrong afterwards.
In addition, this module doesn't completely work well with
EXIF Orientation →
, which changes the orientation to match the EXIF property, then removes the property. It does that in a file_presave hook. The file will be correct after a crop is applied, but the image preview HTML <img>
tag will have the height and width backwards.
Copy the source image's EXIF orientation attribute to the derivative images.
Active
2.0
User interface
FYI: We used simple_image_rotate to combat this issue :)