summaryrefslogtreecommitdiff
path: root/ext/exif/php_exif.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-03-01 04:01:26 +0000
committerMarcus Boerger <helly@php.net>2002-03-01 04:01:26 +0000
commit0857bdbcde229efa1044caa07dcdba8100256a0d (patch)
tree7e8816d65dc2188329ac0980a7a8207bc7036a2b /ext/exif/php_exif.h
parentd5412f3952d9391a35ac047d5199172d30eb6c9e (diff)
downloadphp-git-0857bdbcde229efa1044caa07dcdba8100256a0d.tar.gz
+Support for Photographer/Editor Copyright as associative array as this is a new feature the change (optionally being an array) has to be mentioned in documentation.
+New function exif_headername can be used to read the internal Tag namelist (was mainly created for debugging purpose but maybe somone writes code to create/update exif headers here). +An internal version number is present. +A testpage is supplied test.txt describes how the test works. +The oldfunction read_exif_data has got an alias exif_read_data As the old version of this module is very buggy i decided to implement the testpage (test.txt) and to create the alias. The test script only works with the alias as the old version does not pass tests. By the way it seems a good way to prepend 'exif_' to all functions in the module.
Diffstat (limited to 'ext/exif/php_exif.h')
-rw-r--r--ext/exif/php_exif.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/exif/php_exif.h b/ext/exif/php_exif.h
index 83d0cc39ea..1ee86dc274 100644
--- a/ext/exif/php_exif.h
+++ b/ext/exif/php_exif.h
@@ -24,4 +24,5 @@ extern zend_module_entry exif_module_entry;
#define phpext_exif_ptr &exif_module_entry
PHP_FUNCTION(read_exif_data);
+PHP_FUNCTION(exif_headername);
#endif