Exchangeable image information
- Introduction
- Installing/Configuring
- Predefined Constants
- Exif Functions
- exif_imagetype — Determine the type of an image
- exif_read_data — Reads the EXIF headers from JPEG or TIFF
- exif_tagname — Get the header name for an index
- exif_thumbnail — Retrieve the embedded thumbnail of a TIFF or JPEG image
- read_exif_data — Alias of exif_read_data
Коментарии
If you have exif.so or php_exif.dll enabled under php.ini dynamic extensions, but you still have problem running any funtion, it is possible that you may need to change order of extensions in php.ini.
In many PHP installation packages the extensions are listed alphabetically. However, exif is dependent on mbstrings to be loaded first. Yet, with alphabetic ordering the exif is listed before mbstrings and it causes the error. Load mbstrings extensions before exif.
Thus, do put exif as the very last extension to load and you should be fine.