<?
$arr=getimagesize("imagens/album_01.gif");
eco $arr[3];
$strarr=explodir(""",$arr[3]);
echo $strarr[1];
?>
<HTML>
<CABEÇA>
<TITLE>Imagem de demonstração reduzida</TITLE>
<roteiro>
função Wa_SetImgAutoSize(img)
{
//var img=document.all.img1;//obtenha a imagem
var MaxWidth=200;//Define o limite de largura da imagem
var MaxHeight=100;//Define o limite de altura da imagem
var HeightWidth=img.offsetHeight/img.offsetWidth;//Definir a proporção
var WidthHeight=img.offsetWidth/img.offsetHeight;//Definir a proporção
alerta("teste"+img.offsetHeight+img.fileSize);
if(img.offsetHeight>1) alerta(img.offsetHeight);
if(img.readyState!="completo"){
return false; //Certifica-se de que a imagem esteja totalmente carregada
}
if(img.offsetWidth>MaxWidth){
img.width=MaxLargura;
img.height=MaxWidth*HeightWidth;
}
if(img.offsetHeight>MaxHeight){
img.height=MaxHeight;
img.width=MaxHeight*WidthHeight;
}
}
função CheckImg(img)
{
var mensagem="";
var MaxWidth=1;//Define o limite de largura da imagem
var MaxHeight=1;//Define o limite de altura da imagem
if(img.readyState!="completo"){
return false; //Certifica-se de que a imagem esteja totalmente carregada
}
if(img.offsetHeight>MaxHeight) mensagem+="rExcesso de altura:"+img.offsetHeight;
if(img.offsetWidth>MaxWidth) message+="rExcesso de largura:"+img.offsetWidth;
if(mensagem!="") alerta(mensagem);
}
</script>
</HEAD>
<CORPO>
<img src="images/frequency.gif" border=0 id="img1" onload="CheckImg(this);">
<br>
<input id=inp type="file" onpropertychange="img1.src=this.value;">
</BODY>
</HTML>