asp如何控制图片大小

想要图片最大500X500,小的图片长宽保持不变,超过这个大小的就变成500X500该怎么做?... 想要图片最大500X500,小的图片长宽保持不变,超过这个大小的就变成500X500
该怎么做?
展开
 我来答
溜须拍马关云长
2009-01-19 · TA获得超过1708个赞
知道大有可为答主
回答量:2443
采纳率:0%
帮助的人:0
展开全部
<img src="https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-zhidao.gif" onload="if(parseInt(this.offsetWidth)>50)this.style.width='50px';">

此处演示为50;你改成500
feiyuehuang200
2009-01-19 · TA获得超过263个赞
知道小有建树答主
回答量:242
采纳率:0%
帮助的人:179万
展开全部
<script language="JavaScript">
<!--
var flag=false;
function DrawImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= 105/80){
if(image.width>105){
ImgD.width=105;
ImgD.height=(image.height*105)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt="显示信息..";
}
else{
if(image.height>80){
ImgD.height=80;
ImgD.width=(image.width*80)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt="显示信息..2";
}
}
}
//-->
</script>

代码是这样的,你把上面的数值改下就行
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式