Imagick::getImageGeometry

(No version information available, might be only in CVS)

Imagick::getImageGeometry — Gets the width and height as an associative array

Описание

array Imagick::getImageGeometry ( void )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Returns the width and height as an associative array.

Возвращаемые значения

Returns an array with the width/height of the image, throws ImagickException on error.

Коментарии

Example code:

<?php
$image 
= new imagick($filename);

$geo=$image->getImageGeometry();
 
$sizex=$geo['width'];
$sizey=$geo['height'];
?>
2008-11-20 17:05:09
http://php5.kiev.ua/manual/ru/function.imagick-getimagegeometry.html

    Поддержать сайт на родительском проекте КГБ