.net等比缩放生成缩略图的方法_实用技巧

生成缩略图是一个十分常用功能,找到了一个方法,重写部分代码,实用又好用,.net又一个生成缩略图的方法,不变形

/// <summary>
   /// 为图片生成缩略图
   /// </summary>
   /// <param name="phyPath">原图片的路径</param>
   /// <param name="width">缩略图宽</param>
   /// <param name="height">缩略图高</param>
   /// <returns></returns>
   public System.Drawing.Image GetHvtThumbnail(System.Drawing.Image image, int width, int height)
   {
     Bitmap m_hovertreeBmp = new Bitmap(width, height);
     //从Bitmap创建一个System.Drawing.Graphics
     Graphics m_HvtGr = Graphics.FromImage(m_hovertreeBmp);
     //设置
     m_HvtGr.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     //下面这个也设成高质量
     m_HvtGr.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
     //下面这个设成High
     m_HvtGr.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
     //把原始图像绘制成上面所设置宽高的缩小图
     Rectangle rectDestination = new Rectangle(0, 0, width, height);

     int m_width, m_height;
     if (image.Width * height > image.Height * width)
     {
       m_height = image.Height;
       m_width = (image.Height * width) / height;
     }
     else
     {
       m_width = image.Width;
       m_height = (image.Width * height) / width;
     }

     m_HvtGr.DrawImage(image, rectDestination, 0, 0, m_width, m_height, GraphicsUnit.Pixel);

     return m_hovertreeBmp;
   }

C#缩略图生成类,采用高质量插值法实现缩略图生成,高质量,低速度呈现平滑程度,可以保持缩略图纵横比,在获取缩略图的时候一开始就根据百分比获取图片的尺寸、根据设定的大小返回图片的大小,并高质量保存缩略图图片,为原图片设置EncoderParameters 对象。

以下为类文件,建议保存文件名为:ImageHelper.cs

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
namespace HtmlSnap
{
  public static class ImageHelper
  {
    /// 获取缩略图
    public static Image GetThumbnailImage(Image image, int width, int height)
    {
      if (image == null || width < 1 || height < 1)
        return null;
      // 新建一个bmp图片
      Image bitmap = new System.Drawing.Bitmap(width, height);

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

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

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

        // 高质量、低速度复合
        g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;

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

 // 在指定位置并且按指定大小绘制原图片的指定部分
        g.DrawImage(image, new Rectangle(0, 0, width, height),
          new Rectangle(0, 0, image.Width, image.Height),
          GraphicsUnit.Pixel);
        return bitmap;
      }
    }
    /// <summary>
    /// 生成缩略图,并保持纵横比
    /// </summary>
    /// <returns>生成缩略图后对象</returns>
    public static Image GetThumbnailImageKeepRatio(Image image, int width, int height)
    {
      Size imageSize = GetImageSize(image, width, height);
      return GetThumbnailImage(image, imageSize.Width, imageSize.Height);
    }

    /// <summary>
    /// 根据百分比获取图片的尺寸
    /// </summary>
    public static Size GetImageSize(Image picture, int percent)
    {
      if (picture == null || percent < 1)
        return Size.Empty;

      int width = picture.Width * percent / 100;
      int height = picture.Height * percent / 100;

      return GetImageSize(picture, width, height);
    }
    /// <summary>
    /// 根据设定的大小返回图片的大小,考虑图片长宽的比例问题
    /// </summary>
    public static Size GetImageSize(Image picture, int width, int height)
    {
      if (picture == null || width < 1 || height < 1)
        return Size.Empty;
      Size imageSize;
      imageSize = new Size(width, height);
      double heightRatio = (double)picture.Height / picture.Width;
      double widthRatio = (double)picture.Width / picture.Height;
      int desiredHeight = imageSize.Height;
      int desiredWidth = imageSize.Width;
      imageSize.Height = desiredHeight;
      if (widthRatio > 0)
        imageSize.Width = Convert.ToInt32(imageSize.Height * widthRatio);
      if (imageSize.Width > desiredWidth)
      {
        imageSize.Width = desiredWidth;
        imageSize.Height = Convert.ToInt32(imageSize.Width * heightRatio);
      }
      return imageSize;
    }
    /// <summary>
    /// 获取图像编码解码器的所有相关信息
    /// </summary>
    /// <param name="mimeType">包含编码解码器的多用途网际邮件扩充协议 (MIME) 类型的字符串</param>
    /// <returns>返回图像编码解码器的所有相关信息</returns>
    public static ImageCodecInfo GetCodecInfo(string mimeType)
    {
      ImageCodecInfo[] CodecInfo = ImageCodecInfo.GetImageEncoders();
      foreach (ImageCodecInfo ici in CodecInfo)
      {
        if (ici.MimeType == mimeType) return ici;
      }
      return null;
    }
    public static ImageCodecInfo GetImageCodecInfo(ImageFormat format)
    {
      ImageCodecInfo[] encoders = ImageCodecInfo.GetImageEncoders();
      foreach (ImageCodecInfo icf in encoders)
      {
        if (icf.FormatID == format.Guid)
        {
          return icf;
        }
      }
      return null;
    }
    public static void SaveImage(Image image, string savePath, ImageFormat format)
    {
      SaveImage(image, savePath, GetImageCodecInfo(format));
    }
    /// <summary>
    /// 高质量保存图片
    /// </summary>
    private static void SaveImage(Image image, string savePath, ImageCodecInfo ici)
    {
      // 设置 原图片 对象的 EncoderParameters 对象
      EncoderParameters parms = new EncoderParameters(1);
      EncoderParameter parm = new EncoderParameter(Encoder.Quality, ((long)95));
      parms.Param[0] = parm;
      image.Save(savePath, ici, parms);
      parms.Dispose();
    }

  }
}

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索.net
, 生成缩略图
等比缩放
ai等比缩放、cad等比缩放、c4d等比缩放、ai描边等比缩放、ps等比缩放,以便于您获取更多的相关知识。

时间: 2024-09-21 07:30:13

.net等比缩放生成缩略图的方法_实用技巧的相关文章

ASP.NET实现上传图片并生成缩略图的方法_实用技巧

本文实例讲述了ASP.NET实现上传图片并生成缩略图的方法.分享给大家供大家参考,具体如下: protected void bt_upload_Click(object sender, EventArgs e) { //检查上传文件的格式是否有效 if (this.UploadFile.PostedFile.ContentType.ToLower().IndexOf("image") < 0) { Response.Write("上传图片格式无效!"); re

ASP.NET实现根据URL生成网页缩略图的方法_实用技巧

本文实例讲述了ASP.NET实现根据URL生成网页缩略图的方法.分享给大家供大家参考,具体如下: 工作中需要用到根据URL生成网页缩略图功能,提前做好准备. 在网上找了份源码,但是有错误:当前线程不在单线程单元中,因此无法实例化 ActiveX 控件"8856f961-340a-11d0-a9",解决后运行良好,记录在此备用! 起始页:Default.aspx <%@ Page Language="C#" AutoEventWireup="true&

asp.net 上传图片并同时生成缩略图的代码_实用技巧

复制代码 代码如下: <%@ Page Language="C#" ResponseEncoding="gb2312" %> <%@ Import Namespace="System" %> <%@ Import Namespace="System.IO" %> <%@ Import Namespace="System.Drawing" %> <%@ I

asp.net简单生成验证码的方法_实用技巧

本文实例讲述了asp.net简单生成验证码的方法.分享给大家供大家参考,具体如下: 1.新建一个一般处理程序 namespace WebApplication1 { /// <summary> /// $codebehindclassname$ 的摘要说明 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfil

ASP.NET创建动态缩略图的方法_实用技巧

本文实例讲述了ASP.NET创建动态缩略图的方法.分享给大家供大家参考.具体分析如下: 提示: 1. 导入 System.IO 2. 创建 类C lass "CreateThumbnails" or any class and place following function inside that class You need one function to response call back to main function Function ImageAbortDummyCal

asp.net生成缩略图实现代码_实用技巧

复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Drawing; using System.IO; namespace web三层 { /// <summary> /// 显示请求图片的缩略图,以宽度100像素为最大单位 /// </summary> public class imgSmall : IHttpHan

深入学习.net验证码生成及使用方法_实用技巧

小课堂:验证码的作用:       几年前,大部分网站.论坛之类的是没有验证码的,因为对于一般用户来说验证码只是增加了用户的操作,降低了用户的体验.但是后来各种灌水机器人.投票机器人.恶意注册机器人层出不穷,大大增加了网站的负担同时也给网站数据库带来了大量的垃圾数据.为了防止各种机器人程序的破坏,于是程序员想出了只有人眼能够识别的,程序不容易识别的验证码!       验证码是一个图片,将字母.数字甚至汉字作为图片的内容,这样一张图片中的内容用人眼很容易识别,而程序将无法识别.在进行数据库操作之

ASP固定比例裁剪缩略图的方法_应用技巧

一般生成缩略图的方法有两种: 第一种:缩放成固定大小的小图片 第二种:缩放成等比例的小图片 第一种方法的缺点是,会使图片变形,例如一个身材苗条的MM变成一个胖MM 第二种方法的缺点是,如果图片是放在一个表格中显示,并且图片宽高比和这个表格不同,就不能充满整个表格,留下空隙,不好看 这里介绍的方法是"固定比例裁剪",使用aspjpeg组件,也就是说,生成的缩略图宽高比是固定的,但是不会变形.如果原图的宽高比大于设定的宽高比,就会自动剪掉左右两旁多余的图:如果原图的宽高比小于设定的宽高比,

Asp无组件生成缩略图的代码_应用技巧

  还是先看看基础部分吧.首先,我们知道在页面中显示图片是如下代码: <img src="pic.gif" border="0" width="300" height="260"> src是图片路径,border控制图片边缘宽度,width是图片的长度,height是图片的高度.缩略图的生成其实就是在原始尺寸上缩放.但一般为了尽量少失真,我们都会按比例缩放.于是,获取图片的长宽尺寸也就成了生成缩略图的重点. 下面便