From d0d7f87d31f1e9a3a90fa1acf6458d46050be34c Mon Sep 17 00:00:00 2001 From: Mikko Koppanen Date: Mon, 3 Aug 2009 20:04:39 +0000 Subject: [PATCH] getImageProperties docs git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@286758 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/imagick/imagick/getimageproperties.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/imagick/imagick/getimageproperties.xml b/reference/imagick/imagick/getimageproperties.xml index c975c87996..023909dd66 100644 --- a/reference/imagick/imagick/getimageproperties.xml +++ b/reference/imagick/imagick/getimageproperties.xml @@ -13,7 +13,7 @@ stringpattern"*" boolonly_namestrue - &warn.undocumented.func; + Returns all associated properties that match the pattern. If &true; is passed as second parameter only the property names are returned. This method is present if Imagick is compiled against @@ -37,7 +37,7 @@ only_names - Whether to return only property names + Whether to return only property names. If &false; then also the values are returned @@ -70,7 +70,7 @@ $im = new imagick("/path/to/example.jpg"); /* Get the EXIF information */ $exifArray = $im->getImageProperties("exif:*"); -/* Loop trough the exif properties */ +/* Loop trough the EXIF properties */ foreach ($exifArray as $name => $property) { echo "{$name} => {$property}
\n";