De hecho, el layout básico puede incluir ahí mismo las propiedades width y height, mismas que puedes automatizar con javascript
:
Código Javascript
:
Ver original<script>
foto=new Image();
foto.src="http://www.forosdelweb.com/image.php?u=11549&dateline=1089623522";
document.images[0].src=foto.src;
ancho=foto.width;
alto=foto.height;
alert(ancho)
alert(alto)
</script>
Saludos!