From:             [EMAIL PROTECTED]
Operating system: Any
PHP version:      4.1.2
PHP Bug Type:     Feature/Change Request
Bug description:  Extra EXIF headers

Hello there. I have been investigating the EXIF tags that Windows XP can
add to files, and have successfully identified five extra tags and their
mappings to the fields on the File|Properties...|Summary tab in Explorer
(both "simple" and "advanced" views). XP ignores the standard UserComment
field, alas, so I was forced to look into this.

(For those not using XP to manage their photos, Explorer allows you to
view most EXIF data within the File|Properties... dialog, and even add
some EXIF fields as columns in Detail view)

Since I don't have CVS access, or even a PHP development environment that
would allow me to do the necessary changes myself, I am posting this here
in hope that someone will add this to the upcoming 4.2.0 release.

I suggest the following entries for the TagTable:

static const struct {  
  unsigned short Tag;  
  char *Desc;  
} TagTable[] = {  
{ 0x00FE, "NewSubFile"},  
{ 0x00FF, "SubFile"},  

...

{ 0x9c9b, "Title" },     // Win XP specific, Unicode 
{ 0x9c9c, "Comments" },  // Win XP specific, Unicode 
{ 0x9c9d, "Author" },    // Win XP specific, Unicode 
{ 0x9c9e, "Keywords" },  // Win XP specific, Unicode 
{ 0x9c9f, "Subject" },   // Win XP specific, Unicode, not to be confused
with SubjectDistance and SubjectLocation
-- 
Edit bug report at http://bugs.php.net/?id=16588&edit=1
-- 
Fixed in CVS:        http://bugs.php.net/fix.php?id=16588&r=fixedcvs
Fixed in release:    http://bugs.php.net/fix.php?id=16588&r=alreadyfixed
Need backtrace:      http://bugs.php.net/fix.php?id=16588&r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=16588&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=16588&r=support
Expected behavior:   http://bugs.php.net/fix.php?id=16588&r=notwrong
Not enough info:     http://bugs.php.net/fix.php?id=16588&r=notenoughinfo
Submitted twice:     http://bugs.php.net/fix.php?id=16588&r=submittedtwice

Reply via email to