按比例缩放图片

看到海东兄的 按比例缩放图片 ,我就把我写的js版本的也拿出来show一下,哈哈!
js版本:

function resizeImage(obj, MaxW, MaxH)
{
 var imageObject = obj;
    var state = imageObject.readyState;
 if(state!='complete')
 {
        setTimeout("resizeImage("+imageObject+","+MaxW+","+MaxH+")",50);
  return;
    }
    var oldImage = new Image();
    oldImage.src = imageObject.src;
    var dW = oldImage.width;
    var dH = oldImage.height;
    if(dW>MaxW || dH>MaxH)
 {
        a = dW/MaxW; b = dH/MaxH;
        if( b>a ) a = b;
        dW = dW/a; dH = dH/a;
    }
    if(dW > 0 && dH > 0)
 {
        imageObject.width = dW;
  imageObject.height = dH;
 }
}

使用很简单:<img src="../pic.jpg" οnlοad='resizeImage(this,60,90)> 就OK了;同时也附上C#版本的

C#版本---海东兄 http://www.cnblogs.com/ghd258/archive/2005/11/07/270447.html

1 /// <summary>
 2        /// 按比例缩放图片
 3        /// </summary>
 4        /// <param name="imgUrl">图片的路径</param>
 5        /// <param name="imgHeight">图片的高度</param>
 6        /// <param name="imgWidth">图片的宽度</param>
 7        /// <returns></returns>

 8          public   static   string  GetImageSize( string  imgUrl, int  imgHeight, int  imgWidth)
 9          {
10            string fileName = System.Web.HttpContext.Current.Server.MapPath(imgUrl);
11            string strResult = string.Empty;
12            if(System.IO.File.Exists(fileName) && imgHeight != 0 && imgWidth != 0)
13            {
14                decimal desWidth;decimal desHeight;                                            //目标宽高
15                System.Drawing.Image objImage = System.Drawing.Image.FromFile(fileName);
16                decimal radioAct = (decimal)objImage.Width/(decimal)objImage.Height;        //原始图片的宽高比
17                decimal radioLoc = (decimal)imgWidth/(decimal)imgHeight;                    //图片位的宽高比
18                if(radioAct > radioLoc)                                                        //原始图片比图片位宽
19                {        
20                    decimal dcmZoom = (decimal)imgWidth/(decimal)objImage.Width;
21                    desHeight = objImage.Height*dcmZoom;
22                    desWidth = imgWidth;
23                }

24                else
25                {
26                    decimal dcmZoom = (decimal)imgHeight/(decimal)objImage.Height;
27                    desWidth = objImage.Width*dcmZoom;
28                    desHeight = imgHeight;
29                }

30                objImage.Dispose();                //释放资源
31                strResult = "width=/"" + Convert.ToString((int)desWidth) + "/" height=/""
32                    + Convert.ToString((int)desHeight) + "/" ";
33            }

34            return strResult;
35        }

 =====================================================================

按比例缩放的,分享一个我写的
<script language="javascript">
function changeImg(mypic){
var xw=160;
var xl=180;

var width = mypic.width;
var height = mypic.height;
var bili = width/height;

var A=xw/width;
var B=xl/height;

if(!(A>1&&B>1))
{
if(A<B)
{
mypic.width=xw;
mypic.height=xw/bili;
}
if(A>B)
{
mypic.width=xl*bili;
mypic.height=xl;
}
}
}
</script>
<img src="sh180.jpg" οnlοad="changeImg(this)">

不过后来发现,只要在img中只指定一个width或者一个height属性,可以自动实现按比例缩放,如:<img src="sh180.jpg" width="100" />,这样的话就可以固定宽为100,然后高按比例自动缩放了。

=============================================================

分享一下我的:

function SetSize(obj, width, height)
{
myImage = new Image();
myImage.src = obj.src;
if (myImage.width>0 && myImage.height>0)
{
var rate = 1;
if (myImage.width>width || myImage.height>height)
{
if (width/myImage.width<height/myImage.height)
{
rate = width/myImage.width;
}
else
{
rate = height/myImage.height;
}
}
if (window.navigator.appName == "Microsoft Internet Explorer")
{
obj.style.zoom = rate;
}
else
{
obj.width = myImage.width*rate;
obj.height = myImage.height*rate;
}
}
}

用法:


<img src="img/offer/41936519.jpg" border="0" style="zoom: 0.1" οnlοad="SetSize(this, 80, 60)"/>

这种方法在IE、FIREFOX、OPERA、NETSCAPE测试都适用。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值