Imagick::getImageGeometry

(PECL imagick 2.0.0)

Imagick::getImageGeometryGets the width and height as an associative array

Description

array Imagick::getImageGeometry ( void )

Returns the width and height as an associative array.

Return Values

Returns an array with the width/height of the image.

Errors/Exceptions

Throws ImagickException on error.

Коментарии

Example code:

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

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

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