Imagick
在线手册:中文  英文

Imagick::getImageGeometry

(PECL imagick 2.0.0)

Imagick::getImageGeometryGets 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.

错误/异常

错误时抛出 ImagickException。


Imagick
在线手册:中文  英文

用户评论:

benkuhl at gmail dot com (2012-11-29 16:48:09)

Because this method returns points, you can easily convert to a decimal representation of inches by dividing by 72.

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

$geo $image->getImageGeometry();

$sizex $geo['width']; //1089
$sizey $geo['height']; //396

echo round($sizex 722); //15.13 inches
echo round($sizey 722); //5.5 inches
?>

tim at provu dot co dot uk (2008-11-20 07:05:09)

Example code:

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

$geo=$image->getImageGeometry();
 
$sizex=$geo['width'];
$sizey=$geo['height'];
?>

易百教程