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;
![]() | imagesy![]()
BSE_Icheb at hotmail dot com
21-Jun-2003 07:13
You should destroy the $img too...
boo at php dot net
14-Aug-2002 02:01
To use this function notice that 'image' parameter it's a RESOURCE and NOT an Image File Path ! | ![]() |