$data = file_get_contents('http://www.webshopy.com/images/webshopylogo.png');
$img_size = getimagesizefromstring($data);
echo "<pre>";
print_r($img_size);
echo "</pre>";
/*
run:
Array
(
[0] => 276
[1] => 110
[2] => 3
[3] => width="276" height="110"
[bits] => 8
[mime] => image/png
)
*/