diff options
author | Silvio <s1lv10@uol.com.br> | 2010-04-26 17:56:25 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2010-04-26 17:56:25 -0300 |
commit | 32aa71f1f93e0acd8095b82a919d5ab589c02eea (patch) | |
tree | 1e7b4e3c34ba9d218f465d63ecfc3ade193f1f54 | |
parent | b2179837680e1efe591fba690374666fe23d3673 (diff) | |
download | exif-32aa71f1f93e0acd8095b82a919d5ab589c02eea.tar.gz exif-32aa71f1f93e0acd8095b82a919d5ab589c02eea.tar.bz2 |
Adding more XMP fields
-rw-r--r-- | exif.class.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/exif.class.php b/exif.class.php index 59f3877..34da3cd 100644 --- a/exif.class.php +++ b/exif.class.php @@ -367,6 +367,16 @@ Class Exif { 'ns' => 'http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/', 'type' => 'property', ), + 'credit' => array( + 'name' => 'Credit', + 'ns' => 'http://ns.adobe.com/photoshop/1.0/', + 'type' => 'property', + ), + 'countrycode' => array( + 'name' => 'CountryCode', + 'ns' => 'http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/', + 'type' => 'property', + ), ); } } |