imagesy

(PHP 4, PHP 5, PHP 7, PHP 8)

imagesyGet image height

Опис

imagesy(GdImage $image): int

Returns the height of the given image object.

Параметри

image

Об'єкт GdImage, що повертається однією з функцій створення зображення, такою як imagecreatetruecolor().

Значення, що повертаються

Return the height of the image.

Журнал змін

Версія Опис
8.0.0 Тепер image має бути примірником GdImage. Раніше очікувався gd-resource.

Приклади

Приклад #1 Using imagesy()

<?php

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

echo
imagesy($img); // 200

?>

Прогляньте також

add a note

User Contributed Notes

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