diff options
author | Marcus Boerger <helly@php.net> | 2002-02-28 01:16:27 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-02-28 01:16:27 +0000 |
commit | 98ebd1c28bc5b8a0881403a914f0ecce08973393 (patch) | |
tree | 474b87731b17f0a11e1dc054c5cba559df5e2a36 /ext/exif/php_exif.h | |
parent | 28b321b5e9f8fb4d4ce57c7a44b77b9439e76557 (diff) | |
download | php-git-98ebd1c28bc5b8a0881403a914f0ecce08973393.tar.gz |
+Added UNICODE support for Comments
+Added Description,Artist
+Added missing memory deallocation
+Corrected error with multiple comments
+Corrected handling of ExifVersion, Tag has 4 ASCII characters *WITHOUT* NUL
+Corrected handling of Thumbnailsize if current source detects size < 0
+Changed all fields to char* that do not have a maximum length in EXIF standard
+Undocumented second Parameter ReadAll frees memory to early -> moved to third position default changed to false -> faster
+New second Parameter [true|false] to specify whether or not to to read thumbnails -> reading is timeconsumpting suppose default should be false -> done so
Diffstat (limited to 'ext/exif/php_exif.h')
-rw-r--r-- | ext/exif/php_exif.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/exif/php_exif.h b/ext/exif/php_exif.h index de9974198c..221ea517e3 100644 --- a/ext/exif/php_exif.h +++ b/ext/exif/php_exif.h @@ -1,8 +1,8 @@ /* +----------------------------------------------------------------------+ - | PHP Version 4 | + | PHP version 4.0 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2002 The PHP Group | + | Copyright (c) 1997-2001 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 2.02 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -13,9 +13,12 @@ | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Rasmus Lerdorf <rasmus@php.net> | + | Marcus Boerger <helly@php.net> | +----------------------------------------------------------------------+ */ +/* $Id$ */ + #if HAVE_EXIF extern zend_module_entry exif_module_entry; #define phpext_exif_ptr &exif_module_entry |