imagesy

(PHP 4, PHP 5)

imagesy — Get image height

Описание

int imagesy ( resource $image )

Returns the height of the given image resource.

Список параметров

image

An image resource, returned by one of the image creation functions, such as imagecreatetruecolor().

Возвращаемые значения

Return the height of the image or FALSE on errors.

Примеры

Пример #1 Using imagesy()

<?php

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

echo 
imagesy($img); // 200

?>

Смотрите также

Коментарии

Автор:
To use this function notice that 'image' parameter it's a RESOURCE and NOT an Image File Path !

Here comes an exemple:

$img = @imagecreatefromgif("http://www.mysite.com/my_imag.gif");

if ($img) $img_height = imagesy($img);

echo "My height is " . $img_height;
2002-08-14 02:01:12
http://php5.kiev.ua/manual/ru/function.imagesy.html
You should destroy the $img too...
So it would be :
$img = @imagecreatefromjpeg("http://www.mysite.com/my_image.jpg");

if ($img) {
 $img_height = imagesy($img);
 ImageDestroy($img);
}

echo "My height is " . $img_height;
2003-06-20 19:13:15
http://php5.kiev.ua/manual/ru/function.imagesy.html

    Поддержать сайт на родительском проекте КГБ