Forum Moderators: coopster
What i am after is if anyone know a php script that will extract advanced image information from a jpg.
Im talking about when you goto to properties of an image and you see something like this.
Camera make:
Camera Model:
F/Number:
Exposure:
Has anyone written a script that extracts all this info?
If not i will probably give it a go :)
If you have PHP compiled with --enable-exif you are able to work with information stored in headers of JPEG and TIFF images. This way you can read meta data generated by digital cameras as mentioned above. These functions does not require the GD library.
exif_read_data [ca.php.net]
exif_read_data -- Reads the EXIF headers from JPEG or TIFF. This way you can read meta data generated by digital cameras.