利用System.Drawing.Image.GetThumbnailImage创建缩略图

using System.Drawing;

public static Image GenerateThumbImage(Image originalImage, int limitedSize)

{

    if (limitedSize < 20)

    {

        throw new InvalidObjectException("limitedSize");

    }

    int height = originalImage.Height;

    int width = originalImage.Width;

    if (height > limitedSize || width > limitedSize)

    {

        int newHeight, newWidth;

        if (height > width)

        {

            newHeight = limitedSize;

            double tmp = (limitedSize / height) * width;

            newWidth = (int)Math.Round(tmp);

        }

        else

        {

            newWidth = limitedSize;

            double tmp = (limitedSize / width) * height;

            newHeight = (int)Math.Round(tmp);

      }

        return originalImage.GetThumbnailImage(newWidth, newHeight, nullIntPtr.Zero);

    }

    else

    {

        return originalImage;

    }

}

//这是一个设定长和宽最大值后,等比例缩略的方法
//其中,InvalidObjectException是我自定义的Exception
//而if (limitedSize < 20)这句,是我认为不该创建小于20px的缩略图。

//代码中Image 类是System.Drawing.Image 。

转载于:https://www.cnblogs.com/duanyong/articles/1936362.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值