hi all,
i'm trying to get the ImageSize of 4 pictures in a "for()" loop.
When i'm printing $ptf, it will output all 4 paths of the pics. When i'm trying to output $newx and/or $newy, it outputs nothing. Can anybody help me, please ?
Here's the code:
Olli
for($j=1; $j < 5; $j++)
{
$ptf = $apath.$pic_big[$j];
echo $ptf;
$size = GetImageSize($ptf);
$newx = $size[0];
$newy = $size[1];
}