手机
当前位置:查字典教程网 >编程开发 >ASP教程 >asp正则html的图片,对图自动缩放大小
asp正则html的图片,对图自动缩放大小
摘要:下面这个是比较不错的一个复制代码代码如下:FunctionFormatImg2(content)dimreSetre=newRegExpre...

下面这个是比较不错的一个

复制代码 代码如下:

FunctionFormatImg2(content)

dimre

Setre=newRegExp

re.IgnoreCase=true

re.Global=True

re.Pattern="(script)"

Content=re.Replace(Content,"script")

re.Pattern="<img.[^>]*src(=|)(.[^>]*)>"

Content=re.replace(Content,"<imgsrc=$2style=""cursor:pointer""alt=""点此在新窗口浏览图片""onclick=""javascript:window.open(this.src);""onload=""javascript:resizepic(this)""border=""0""/>")

setre=nothing

FormatImg=content

endfunction

上面有点不好的就是对于图片中的宽度和高度都不存在了

复制代码 代码如下:

Functiongetphoto(strHTML)

DimobjRegExp,Match,Matches

SetobjRegExp=NewRegexp

objRegExp.IgnoreCase=True

objRegExp.Global=True

objRegExp.Pattern="<img.+?>"

tp=""

SetMatches=objRegExp.Execute(strHTML)

ForEachMatchinMatches

tp=tp&Match.value

exitfor

Next

getphoto=tp

SetobjRegExp=Nothing

EndFunction

下面的代码时进行图片按比例缩放

复制代码 代码如下:

functionResizeImage(imageid,limitWidth,limitHeight)

{

varimage=newImage();

image.src=imageid.src;

if(image.width<=0&&image.height<=0)return;

if(image.width/image.height>=limitWidth/limitHeight)

{

if(image.width>limitWidth)

{

imageid.width=limitWidth;

imageid.height=(image.height*limitWidth)/image.width;

}

}

elseif(image.height>limitHeight)

{

imageid.height=limitHeight;

imageid.width=(image.width*limitHeight)/image.height;

}

if(imageid.parentElement.tagName!="A")

{

imageid.onclick=function(){window.open(this.src);}

imageid.style.cursor="hand";

}

}

window.onload=InitImages;

functionInitImages()

{

//图片的约束宽度和高度

varmaxWidth=100;

varmaxHeight=100;

varimgs=document.getElementsByTagName("img");

for(vari=0;i<imgs.length;i++)

{

varimg=imgs;

if(img.width>maxWidth||img.height>maxHeight)

ResizeImage(img,maxWidth,maxHeight);

}

}

【asp正则html的图片,对图自动缩放大小】相关文章:

asp html转成html编码程序

asp错误的几种处理方式

添加超级用户的.asp代码[蓝屏的原创,凯文改进,Ms未公布的漏洞]

asp实现sql的备份与恢复

ASP程序给上传的图片增添水印效果!

asp存储过程使用大全

利用ASPUPLOAD,ASPJPEG实现图片上传自动生成缩略图及加上水印

收集asp的常用函数

flash和asp分页的一点心得与flash脚本

一搜图片搜索小偷

精品推荐
分类导航