手机
当前位置:查字典教程网 >编程开发 >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自动解析网页中的图片地址

asp中利用CSW中文分词组件来实现自己网站的内容关键词自动提取

asp 删除图片与文件函数

Wrance的图片系统目录直读版1.0

asp 中常用的文件处理函数

使用asp代码突破图片的防盗连

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

远程图片自动按文件夹上传到服务器-默飞出品

asp限制上传文件大小实例

asp制作的日历程序

精品推荐
分类导航