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
Hello community,
I read that on older php versions exif read function was not working properly on certain images.
I should have been patched with new php versions... But not fully...
On recent DJI images, I have a persistent uncapacity to correctly "read exif data" from image
Image example:
here an example of errors I have:
Please note that with other images, it works like a charm. And not problem for me to extract data.
Here is my code:
`//get the EXIF
$exif = exif_read_data($file, 'IFD0');
echo $exif===false ? "Aucun en-tête de donnés n'a été trouvé. \n" : "L'image contient des en-têtes \n";
$exif = exif_read_data($file);