Example TIFF Metadata Display Script
This example script is included with the PHP JPEG Metadata Toolkit. It shows how the library can be used to display detailed metadata from a TIFF image file. This is an explanation of some of the commands used in the script.
Click here to see this script
This script is essentially a subset of Example.php
TIFF EXIF
The only metadata that can be stored in a TIFF file is TIFF/EXIF information. Displaying this information metadata in HTML format from a PHP script is very simple:
echo Interpret_EXIF_to_HTML( get_EXIF_TIFF( $filename ), $filename );