zoukankan      html  css  js  c++  java
  • asp.net生成缩略图

            /// <summary>
            /// 生成缩略图
            /// </summary>
            /// <param name="orginalImagePat">原图片地址</param>
            /// <param name="thumNailPath">缩略图地址</param>
            /// <param name="width">缩略图宽度</param>
            /// <param name="height">缩略图高度</param>
            /// <param name="model">生成缩略的模式</param>
            public void MakeThumNail(string originalImagePath, string thumNailPath, int width, int height, string model)
            {
                System.Drawing.Image originalImage = System.Drawing.Image.FromFile(originalImagePath);
    
                int thumWidth = width;      //缩略图的宽度
                int thumHeight = height;    //缩略图的高度
    
                int x = 0;
                int y = 0;
    
                int originalWidth = originalImage.Width;    //原始图片的宽度
                int originalHeight = originalImage.Height;  //原始图片的高度
                switch (model)
                {
                    case "HW":      //指定高宽缩放,可能变形
                        break;
                    case "W":       //指定宽度,高度按照比例缩放
                        thumHeight = originalImage.Height * width / originalImage.Width;
                        break;
                    case "H":       //指定高度,宽度按照等比例缩放
                        thumWidth = originalImage.Width * height / originalImage.Height;
                        break;
                    case "Cut":
                        if ((double)originalImage.Width / (double)originalImage.Height > (double)thumWidth / (double)thumHeight)
                        {
                            originalHeight = originalImage.Height;
                            originalWidth = originalImage.Height * thumWidth / thumHeight;
                            y = 0;
                            x = (originalImage.Width - originalWidth) / 2;
                        }
                        else
                        {
                            originalWidth = originalImage.Width;
                            originalHeight = originalWidth * height / thumWidth;
                            x = 0;
                            y = (originalImage.Height - originalHeight) / 2;
                        }
                        break;
                    default:
                        break;
                }
    
                //新建一个bmp图片
                System.Drawing.Image bitmap = new System.Drawing.Bitmap(thumWidth, thumHeight);
                //新建一个画板
                System.Drawing.Graphics graphic = System.Drawing.Graphics.FromImage(bitmap);
                //设置高质量查值法
                graphic.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
                //设置高质量,低速度呈现平滑程度
                graphic.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
                //清空画布并以透明背景色填充
                graphic.Clear(System.Drawing.Color.Transparent);
                //在指定位置并且按指定大小绘制原图片的指定部分
                graphic.DrawImage(originalImage, new System.Drawing.Rectangle(0, 0, thumWidth, thumHeight)
                    , new System.Drawing.Rectangle(x, y, originalWidth, originalHeight), System.Drawing.GraphicsUnit.Pixel);
                try
                {
                    bitmap.Save(thumNailPath, System.Drawing.Imaging.ImageFormat.Jpeg);
                }
                catch (Exception ex)
                {
    
                    throw ex;
                }
                finally
                {
                    originalImage.Dispose();
                    bitmap.Dispose();
                    graphic.Dispose();
                }
            }
  • 相关阅读:
    〖教程〗Ladon探测域名内网IP(只允许域名访问站点)
    Ladon枚举远程主机网卡信息(OXID定位多网卡主机)
    Ladon批量检测漏洞 SMBGhost CVE-2020-0796
    Ladon7.0扫描器简明教程/用法例子
    〖教程〗Ladon IIS站点密码读取
    〖教程〗Ladon连接WebShell一句话远程执行命令
    〖教程〗Ladon内网横向移动Wmiexec/psexec/atexec/psexec/webshell
    〖教程〗Winrm远程命令/WimrnCmd/端口复用后门/Windows密码爆破
    〖教程〗Ladon以指定用户权限运行程序或命令
    〖教程〗Ladon迷你WEB服务器/一键内网HTTP服务器
  • 原文地址:https://www.cnblogs.com/deep-blue/p/5110012.html
Copyright © 2011-2022 走看看