imagesy

(PHP 4, PHP 5, PHP 7)

imagesyGet image height

Descrierea

imagesy ( resource $image ) : int

Returns the height of the given image resource.

Parametri

image

O resursă - imagine, întoarsă de una din funcțiile de creare a imaginilor, cum ar fi imagecreatetruecolor().

Valorile întoarse

Return the height of the image or false on errors.

Exemple

Example #1 Using imagesy()

<?php

// create a 300*200 image
$img imagecreatetruecolor(300200);

echo 
imagesy($img); // 200

?>

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top