PHP Doku:: Fetch basic attributes about the image - function.imagick-pingimage.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The Imagick class

<<Imagick::paintTransparentImage

Imagick::pingImageBlob>>

Imagick::pingImage

(PECL imagick 2.0.0)

Imagick::pingImageFetch basic attributes about the image

Beschreibung

bool Imagick::pingImage ( string $filename )
Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

This method can be used to query image width, height, size, and format without reading the whole image in to memory.

Parameter-Liste

filename

The filename to read the information from.

Rückgabewerte

Liefert TRUE bei Erfolg.


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
Eero Niemi (eero at eero dot info)
21.05.2008 16:12
Actually the previous example causes file to be loaded twice on Imagick's stack, proper way to do this is:

<?php

$file
= 'foo.jpg';
$image = new Imagick();
$image->pingImage($file);
$image_info = $image->identifyImage();

?>



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",...)