惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
S
SegmentFault 最新的问题
D
Docker
博客园 - 司徒正美
雷峰网
雷峰网
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - Franky
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
MongoDB | Blog
MongoDB | Blog

博客园 - 大牛博客

广东早茶的悠闲时光 用户中心 - 博客园 GridView数据绑定控件和ObjectDataSource数据源控件实现排序功能 - 大牛博客 - 博客园 asp.net 常用字符串过滤方法 非常实用的Asp.net常用的51个代码 - 大牛博客 - 博客园 JS 中面向对象的5钟写法 GridView的RowCommand事件中取得行索引 - 大牛博客 - 博客园 .netframework3.5 中TimeZoneInfo 类的使用 GridView,DataList,Repeater,DetailsView的遍历行代码 - 大牛博客 - 博客园 合理选择贪婪模式与非贪婪模式 - 大牛博客 - 博客园 揭开正则表达式的神秘面纱 asp.net下载文件 - 大牛博客 - 博客园 C#数据结构之双向链表 C#数据结构之队列 ASP.NET四种页面导航方式之比较与选择 asp.net页面事件执行顺序 中英文字符串截取方法 - 大牛博客 - 博客园 ASP.NET纯数字验证码 SQL 2005 ROW_NUMBER() 语句分页 | SQL效率最高的分页查询数据
ASP.NET 2.0上传图片生成缩略图类
大牛博客 · 2009-07-16 · via 博客园 - 大牛博客

共有4种方法(也叫做函数),原本只是生成缩略图,生成后很不清楚,不好!所以我加入了优化缩略图的代码。只加在第二种方法里了。谁用的话可以比较一下,比其他的方法效果好太多了。

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.IO;
using System.Drawing;
using System.Drawing.Imaging;

/// <summary>
/// 图片处理类
/// 1、生成缩略图片或按照比例改变图片的大小和画质
/// 2、将生成的缩略图放到指定的目录下
/// </summary>
public class ImageClass
{
      public Image ResourceImage;
      private int ImageWidth;
      private int ImageHeight;

      public string ErrMessage;

      /// <summary>
      /// 类的构造函数
      /// </summary>
      /// <param name="ImageFileName">图片文件的全路径名称</param>
      public ImageClass()
      {
      }

      public bool ThumbnailCallback()
      {
          return false;
      }

      /// <summary>
      /// 生成缩略图重载方法1,返回缩略图的Image对象
      /// </summary>
      /// <param name="Width">缩略图的宽度</param>
      /// <param name="Height">缩略图的高度</param>
      /// <returns>缩略图的Image对象</returns>
      public Image GetReducedImage(int Width, int Height)
      {
          try
          {
              Image ReducedImage;

              Image.GetThumbnailImageAbort callb = new Image.GetThumbnailImageAbort(ThumbnailCallback);

              ReducedImage = ResourceImage.GetThumbnailImage(Width, Height, callb, IntPtr.Zero);

              return ReducedImage;
          }
          catch (Exception e)
          {
              ErrMessage = e.Message;
              return null;
          }
      }

      /// <summary>
      /// 生成缩略图重载方法2,将缩略图文件保存到指定的路径
      /// </summary>
      /// <param name="Width">缩略图的宽度</param>
      /// <param name="Height">缩略图的高度</param>
      /// <param name="targetFilePath">缩略图保存的全文件名,(带路径),参数格式:D:\Images\filename.jpg</param>
      /// <returns>成功返回true,否则返回false</returns>
      public bool GetReducedImage(int Width, int Height,string ImageFileName, string targetFilePath)
      {
          Image ReducedImage = Image.FromFile(ImageFileName);
          //新建一个bmp图片
          System.Drawing.Image bitmap = new System.Drawing.Bitmap(Width, Height);

          //新建一个画板
          Graphics g = System.Drawing.Graphics.FromImage(bitmap);

          //设置高质量插值法
          g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;

          //设置高质量,低速度呈现平滑程度
          g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;

          //清空画布并以透明背景色填充
          g.Clear(Color.Transparent);

          //在指定位置并且按指定大小绘制原图片的指定部分
          g.DrawImage(ReducedImage, new Rectangle(0, 0, Width, Height),
              new Rectangle(0, 0, ReducedImage.Width, ReducedImage.Height),
              GraphicsUnit.Pixel);

          try
          {
              //以jpg格式保存缩略图
              bitmap.Save(targetFilePath, System.Drawing.Imaging.ImageFormat.Jpeg);
              return true;
          }
          catch (System.Exception e)
          {
              throw e;
          }
          finally
          {
              ReducedImage.Dispose();
              bitmap.Dispose();
              g.Dispose();
          }
      }

      /// <summary>
      /// 生成缩略图重载方法3,返回缩略图的Image对象
      /// </summary>
      /// <param name="Percent">缩略图的宽度百分比 如:需要百分之80,就填0.8</param>  
      /// <returns>缩略图的Image对象</returns>
      public Image GetReducedImage(double Percent)
      {
          try
          {
              Image ReducedImage;

              Image.GetThumbnailImageAbort callb = new Image.GetThumbnailImageAbort(ThumbnailCallback);

              ImageWidth = Convert.ToInt32(ResourceImage.Width * Percent);
              ImageHeight = Convert.ToInt32(ResourceImage.Width * Percent);

              ReducedImage = ResourceImage.GetThumbnailImage(ImageWidth, ImageHeight, callb, IntPtr.Zero);

              return ReducedImage;
          }
          catch (Exception e)
          {
              ErrMessage = e.Message;
              return null;
          }
      }

      /// <summary>
      /// 生成缩略图重载方法4,返回缩略图的Image对象
      /// </summary>
      /// <param name="Percent">缩略图的宽度百分比 如:需要百分之80,就填0.8</param>  
      /// <param name="targetFilePath">缩略图保存的全文件名,(带路径),参数格式:D:\Images\filename.jpg</param>
      /// <returns>成功返回true,否则返回false</returns>
      public bool GetReducedImage(double Percent, string targetFilePath)
      {
          try
          {
              Image ReducedImage;

              Image.GetThumbnailImageAbort callb = new Image.GetThumbnailImageAbort(ThumbnailCallback);

              ImageWidth = Convert.ToInt32(ResourceImage.Width * Percent);
              ImageHeight = Convert.ToInt32(ResourceImage.Width * Percent);

              ReducedImage = ResourceImage.GetThumbnailImage(ImageWidth, ImageHeight, callb, IntPtr.Zero);

              ReducedImage.Save(@targetFilePath, ImageFormat.Jpeg);

              ReducedImage.Dispose();

              return true;
          }
          catch (Exception e)
          {
              ErrMessage = e.Message;
              return false;
          }
      }


}

使用办法其中strBigImage代表了全路径以及文件名的要缩略图片地址,strThumbImage表示全路径以及文件名的生成文件名

ImageClass imgclass =new ImageClass();
            imgclass.GetReducedImage(180,180,strBigImage,strThumbImage);