GoLang Imagick::getImageGeometry

request it (330)
GoLang replacement for PHP's Imagick::getImageGeometry [edit | history]



Do you know a GoLang replacement for PHP's Imagick::getImageGeometry? Write it!

PHP Imagick::getImageGeometry

PHP original manual for Imagick::getImageGeometry [ show | php.net ]

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.

Examples

Example #1 Imagick::getImageGeometry()

<?php
function getImageGeometry($imagePath) {
    
$imagick = new \Imagick(realpath($imagePath));
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>