update page now

Voting

: four plus one?
(Example: nine)

The Note You're Voting On

Ricardo Cordts Monteiro
15 years ago
Practical use to get the dimensions of the image:

<?php
$image = new Imagick($image_src);
$d = $image->getImageGeometry();
$w = $d['width'];
$h = $d['height'];
?>

<< Back to user notes page

To Top