<?
$arr=getimagesize("images/album_01.gif");
echo $arr[3];
$strarr=explode("/"",$arr[3]);
echo $strarr[1];
?>
<html>
<head>
<title>演示图片等比例缩小</title>
<script>
function wa_setimgautosize(img)
{
//var img=document.all.img1;//获取图片
var maxwidth=200;//设置图片宽度界限
var maxheight=100;//设置图片高度界限
var heightwidth=img.offsetheight/img.offsetwidth;//设置高宽比
var widthheight=img.offsetwidth/img.offsetheight;//设置宽高比
alert("test"+img.offsetheight+img.filesize);
if(img.offsetheight>1) alert(img.offsetheight);
if(img.readystate!="complete"){
return false;//确保图片完全加载
}
if(img.offsetwidth>maxwidth){
img.width=maxwidth;
img.height=maxwidth*heightwidth;
}
if(img.offsetheight>maxheight){
img.height=maxheight;
img.width=maxheight*widthheight;
}
}
function checkimg(img)
{
var message="";
var maxwidth=1;//设置图片宽度界限
var maxheight=1;//设置图片高度界限
if(img.readystate!="complete"){
return false;//确保图片完全加载
}
if(img.offsetheight>maxheight) message+="/r高度超额:"+img.offsetheight;
if(img.offsetwidth>maxwidth) message+="/r宽度超额:"+img.offsetwidth;
if(message!="") alert(message);
}
</script>
</head>
<body>
<img src="http://www.VeVb.com/htmldata/2005-10-03/images/frequency.gif" border=0 id="img1" >
<br>
<input id=inp type="file" onpropertychange="img1.src=this.value;">
</body>
</html>
新闻热点
疑难解答