$headers = array("Range: bytes=0-32768");
$curl = curl_init("http://seek4info.com/images/seek4info_logo.png");
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl);
curl_close($curl);;
$img_size = imagecreatefromstring($data);
$width = imagesx($img_size);
$height = imagesy($img_size);
echo "w: " . $width . " h: " . $height;
/*
run:
w: 236 h: 82
*/