Php/docs/imagick.getimagegeometry
来自菜鸟教程
Imagick::getImageGeometry
(PECL imagick 2, PECL imagick 3)
Imagick::getImageGeometry — Gets the width and height as an associative array
说明
public Imagick::getImageGeometry ( ) : array
Returns the width and height as an associative array.
返回值
Returns an array with the width/height of the image.
错误/异常
错误时抛出 ImagickException。
范例
Example #1 Imagick::getImageGeometry()
<?phpfunction getImageGeometry($imagePath) { $imagick = new \Imagick(realpath($imagePath)); header("Content-Type: image/jpg"); echo $imagick->getImageBlob();}?>