Descrição
int
imagesy ( resource image )
imagesy() retorna a altura da
imagem identificada por image.
Exemplo 1. Usando imagesy()
<?php
// create a 300*200 image $img = imagecreate(300, 200);
echo imagesy($img); // 200
?>
|
|
Veja também imagecreate(),
getimagesize() e
imagesx().