diff options
Diffstat (limited to 'exif.class.php')
-rw-r--r-- | exif.class.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/exif.class.php b/exif.class.php index 0b30a99..967066d 100644 --- a/exif.class.php +++ b/exif.class.php @@ -192,6 +192,7 @@ Class Exif { * arrays and structures, we have to deal with those as well. * * @return array + * Mapping between CCK and WMP fields. */ public function getWMPFields() { return array( @@ -261,5 +262,11 @@ Class Exif { 'type' => 'property', ), ); - } + } + + /** + * Read WMP data from an image file. + */ + public function readWMPTags($file, $arTagNames=array()) { + } } |