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.
相关问答:
<%@language="vbscript"%>
<%option explicit%>
<html>
<head> <title>xxx </title> </head>
<script language=vbs>
'注意变量 ......
我原本是学jsp的可找了一个ASP的公司!我要重新学习! 学习ASP! 希望大家推荐一本好书给我谢谢
<ASP3.0高级编程> 网上有电子版的
发现网上asp信息时最多的 比其他的都多好多
yun
找本有应用事例的A ......
我找了一个伪静态代码,如下:
index.asp
<!--#include file="config.asp"-->
<ol>
<%
Set rs=server.CreateObject("adodb.recordset") & ......
我有一个文件名 aaa.bbb.rar或者a.b.c.d.html或者aa.b.dd.shtml
我怎样截取文件的后缀名呀。。。
<%
aa="aaa.bbb.rar"
bb=split(aa,".")
response.write bb(ubound(bb)) ......