well.... if you have certain versions of GD library, you can use that to find the size.
$img=imagecreatefromgif("http://www.domain.com/image.gif");
$imagewidth=imagesx($img);
$imageheight=imagesy($img);
But recent GD does not support ".gif"s anymore.