PHP Doku:: Ermittelt die Bild-Höhe - function.imagesy.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungBildbearbeitung und GDGD- und Image-Funktionenimagesy

Ein Service von Reinhard Neidl - Webprogrammierung.

GD- und Image-Funktionen

<<imagesx

imagetruecolortopalette>>

imagesy

(PHP 4, PHP 5)

imagesyErmittelt die Bild-Höhe

Beschreibung:

int imagesy ( resource $im )

ImageSY() ermittelt die Höhe des Bildes, das durch im referenziert wird.

Siehe auch imagecreate() und imagesx().


2 BenutzerBeiträge:
- Beiträge aktualisieren...
BSE_Icheb at hotmail dot com
21.06.2003 1:13
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;
boo at php dot net
14.08.2002 8:01
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;



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)