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
Calling getexif() on an image instance prior to 8.2.0 used to return more information, for example shutter speed and aperture for images with this data present.
Calling the protected _getexif() continues to provide the full data set.
Prior to #4947, we merged the EXIF IFD into the rest of the top level tags. This was not ideal however, as this meant that you couldn't tell which tags had been part of the EXIF IFD, and which tags had been already at the top level. So #4947 stopped this merging.
Instead, you can get the EXIF IFD using get_ifd().
Calling getexif() on an image instance prior to 8.2.0 used to return more information, for example shutter speed and aperture for images with this data present.
Calling the protected _getexif() continues to provide the full data set.
See also this discussion on stack overflow
The text was updated successfully, but these errors were encountered: