我做了一个
<script language="javascript">
<!--
function check(obj) {
if (obj.width/obj.height>= 1.2){
obj.width = 120;
}else{
obj.height = 100;
}
}
//-->
</script>
--------------------------
<img src="xx.gif" border="0" onload="check(this);" />
--------------------------
我设置的图片是宽最大120px,高最大100px