PHP 8.5.0 Alpha 4 available for testing

Voting

: max(five, nine)?
(Example: nine)

The Note You're Voting On

terry
11 years ago
<?php

$image
= new Imagick("picture.jpg");
$width = $image->getImageWidth();
print
"the image width is " . $width . " pixels";

?>

Will print:
the image width is 200 pixels

<< Back to user notes page

To Top