<?
$arr=getimagesize("imagenes/album_01.gif");
eco $arr[3];
$strarr=explotar(""",$arr[3]);
echo $strarr[1];
?>
<HTML>
<CABEZA>
<TITLE>Imagen de demostración reducida</TITLE>
<guión>
función Wa_SetImgAutoSize(img)
{
//var img=document.all.img1;//Obtener la imagen
var MaxWidth=200;//Establecer el límite de ancho de la imagen
var MaxHeight=100;//Establecer el límite de altura de la imagen
var HeightWidth=img.offsetHeight/img.offsetWidth;//Establecer la relación de aspecto
var WidthHeight=img.offsetWidth/img.offsetHeight;//Establecer la relación de aspecto
alert("prueba"+img.offsetHeight+img.fileSize);
if(img.offsetHeight>1) alerta(img.offsetHeight);
if(img.readyState!="completo"){
return false;//Asegúrate de que la imagen esté completamente cargada
}
if(img.offsetWidth>MaxWidth){
img.width=Ancho máximo;
img.height=Ancho máximo*Anchoalto;
}
if(img.offsetHeight>MaxHeight){
img.height=AlturaMáxima;
img.width=AlturaMáxima*AnchoAltura;
}
}
función CheckImg(img)
{
var mensaje="";
var MaxWidth=1;//Establecer el límite de ancho de la imagen
var MaxHeight=1;//Establecer el límite de altura de la imagen
if(img.readyState!="completo"){
return false;//Asegúrate de que la imagen esté completamente cargada
}
if(img.offsetHeight>MaxHeight) mensaje+="rExceso de altura:"+img.offsetHeight;
if(img.offsetWidth>MaxWidth) mensaje+="rExceso de ancho:"+img.offsetWidth;
if(mensaje!="") alerta(mensaje);
}
</script>
</CABEZA>
<CUERPO>
<img src="images/frequency.gif" border=0 id="img1" onload="CheckImg(this);">
<br>
<input id=inp type="archivo" onpropertychange="img1.src=this.value;">
</CUERPO>
</HTML>