asp 程序如何缩放gif图片
我们知道。ASPJPEG能实现JPG图片大小的缩放等丰富功能,那GIF动画图片也能通过ASP程序来实现缩放吗?
如果可能,请给出思路。
在线等。感谢..
http://hi.baidu.com/qiushikeji/blog/item/131d8b450c2d0724cefca305.html
希望对你有帮助
顶
在csdn里面搜索一下。
<img src='a.jpg' width='124' height='124' onload='javascript:DrawImage(this,124,124);' border='0'/>
function DrawImage(MyPic,W,H){
var flag=false;
var image=new Image();
image.src=MyPic.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= W/H){
if(image.width>W){
MyPic.width=W;
MyPic.height=(image.height*W)/image.width;
}
else{
MyPic.width=image.width;
MyPic.height=image.height;
}
}
else{
if(image.height>H){
MyPic.height=H;
MyPic.width=(image.width*H)/image.height;
}
else{
MyPic.width=image.
相关问答:
<%if request.QueryString("start") <>"" then%>
<%if cint(start)>0 then%>
<a href="search.asp?q= <%=q%>&start= <%if request.Query ......
最近我通过学习,感觉自己学的还可以了,想做一网站,但是一直都找不到题材,不知道做什么,希望各位给我点意见,如果有需求文档就更好了!希望大家给我点意见,谢谢!
先做个企业网站吧,我感觉一个人做网站不适宜 ......
我的網頁代碼為ASP語言,驗證方式為系統自帶的WINDOW驗證模式.
現在我如果要在ASP代碼中獲取當前的登入人 ......
字段PowerList里面的值:KSO10000,KSO10021,KSO10004,KSO10022,KSO10020,KSO10008
现在要判断,当PowerList里面存在KSO10004这个值的时候,输出:好
VBScript code:
<%
set rs=server.Creat ......