PHP Doku:: Returns the named image property - function.imagick-getimageproperty.html
Bisherige Suchanfragen: (1) anzeigen

Verlauf / Chronik / History: (2) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungImage Processing (ImageMagick)The Imagick classImagick::getImageProperty

Ein Service von Reinhard Neidl - Webprogrammierung.

The Imagick class

<<Imagick::getImageProperties

Imagick::getImageRedPrimary>>

Imagick::getImageProperty

(PECL imagick 2.0.0)

Imagick::getImagePropertyReturns the named image property

Beschreibung

string Imagick::getImageProperty ( string $name )

Returns the named image property. Diese Funktion ist verfügbar, wenn Imagick gegen die ImageMagick-Version 6.3.2 oder höher kompiliert wurde.

Parameter-Liste

name

name of the property (for example Exif:DateTime)

Beispiele

Beispiel #1 Using Imagick::getImageProperty():

Setting and getting image property

<?php
$image 
= new Imagick();
$image->newImage(300200"black");

$image->setImageProperty('Exif:Make''Imagick');
echo 
$image->getImageProperty('Exif:Make');
?>

Siehe auch

Rückgabewerte

Returns a string containing the image property, false if a property with the given name does not exist.


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)