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";