$_titleFields
$_titleFields :
General class for fetching and parsing EXIF information from images.
Works equally well with either the built in php exif functions (if PHP compiled with exif support), the Exiftool package (more complete but slower), or the bundled exif library.
factory(string $driver = null, array $params = array()) : \Horde_Image_Exif
Factory method for instantiating a Horde_Image_Exif object.
string | $driver | |
array | $params |
getFields(mixed $driver = null, boolean $description_only = false) : array
Returns a flattened array of supported metadata fields.
mixed | $driver | A Horde_Image_Exif_Base instance or a string specifying the driver in use. |
boolean | $description_only | Only return the field descriptions. |
getHumanReadable(string $field, string $data) : string
Converts an exif field into human-readable form.
Some of these cases are ported from the Exifer library, others were changed from their implementation where the EXIF standard dictated different behaviour.
string | $field | The name of the field to translate. |
string | $data | The data value to translate. |
The converted data.