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.
Información de imagen intercambiable
- Introducción
- Instalación/Configuración
- Constantes predefinidas
- Funciones de Exif
- exif_imagetype — Determinar el tipo de una imagen
- exif_read_data — Lee las cabeceras EXIF desde un JPEG o un TIFF
- exif_tagname — Obtener el nombre de la cabecera de un índice
- exif_thumbnail — Recuperar la miniatura embebida de una imagen TIFF o JPEG
- read_exif_data — Alias de exif_read_data
A Austin ¶
1 year ago
