prueba con este codigo:
Código PHP:
<?php
list($width, $height, $type, $attr) = getimagesize("MyImage.jpg");
echo "anchura " .$width."<br />";
echo "altura " .$height."<br />";
echo "Tipo " .$type."<br />";
echo "Atributo " .$attr;
?>
este te funciona para los siguientes formatos:
- .jpg
- .gif
- .png
- .BMP
- .SWF
- ETC.
puedes leer mas aquí:
http://us.php.net/function.getimagesize
-