程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#縮放和裁剪圖片

C#縮放和裁剪圖片

編輯:C#入門知識

在GDI+中,縮放和剪裁可以看作同一個操作,無非就是原始區域的選擇不同罷了。空口無憑,先看具體算法可能更好理解。

C#代碼  收藏代碼
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;  
  4. using System.Drawing;  
  5. using System.Drawing.Drawing2D;  
  6. using System.Drawing.Imaging;  
  7.   
  8. namespace Project  
  9. {  
  10.     class ImageOperation  
  11.     {  
  12.         /// <summary>  
  13.         ///  Resize圖片   
  14.         /// </summary>  
  15.         /// <param name="bmp">原始Bitmap </param>  
  16.         /// <param name="newW">新的寬度</param>  
  17.         /// <param name="newH">新的高度</param>  
  18.         /// <param name="Mode">保留著,暫時未用</param>  
  19.         /// <returns>處理以後的圖片</returns>  
  20.   
  21.         public static Bitmap ResizeImage(Bitmap bmp, int newW, int newH, int Mode)  
  22.         {  
  23.             try  
  24.             {  
  25.                 Bitmap b = new Bitmap(newW, newH);  
  26.                 Graphics g = Graphics.FromImage(b);  
  27.                 // 插值算法的質量   
  28.                 g.InterpolationMode = InterpolationMode.HighQualityBicubic;  
  29.                 g.DrawImage(bmp, new Rectangle(0, 0, newW, newH), new Rectangle(0, 0, bmp.Width, bmp.Height), GraphicsUnit.Pixel);  
  30.                 g.Dispose();  
  31.                 return b;  
  32.             }  
  33.             catch  
  34.             {  
  35.                 return null;  
  36.             }  
  37.         }  
  38.         /// <summary>  
  39.         /// 剪裁 -- 用GDI+   
  40.         /// </summary>  
  41.         /// <param name="b">原始Bitmap</param>  
  42.         /// <param name="StartX">開始坐標X</param>  
  43.         /// <param name="StartY">開始坐標Y</param>  
  44.         /// <param name="iWidth">寬度</param>  
  45.         /// <param name="iHeight">高度</param>  
  46.         /// <returns>剪裁後的Bitmap</returns>  
  47.         public static Bitmap Cut(Bitmap b, int StartX, int StartY, int iWidth, int iHeight)  
  48.         {  
  49.             if (b == null)  
  50.             {  
  51.                 return null;  
  52.             }  
  53.             int w = b.Width;  
  54.             int h = b.Height;  
  55.             if (StartX >= w || StartY >= h)  
  56.             {  
  57.                 return null;  
  58.             }  
  59.             if (StartX + iWidth > w)  
  60.             {  
  61.                 iWidth = w - StartX;  
  62.             }  
  63.             if (StartY + iHeight > h)  
  64.             {  
  65.                 iHeight = h - StartY;  
  66.             }  
  67.             try  
  68.             {  
  69.                 Bitmap bmpOut = new Bitmap(iWidth, iHeight, PixelFormat.Format24bppRgb);  
  70.                 Graphics g = Graphics.FromImage(bmpOut);  
  71.                 g.DrawImage(b, new Rectangle(0, 0, iWidth, iHeight), new Rectangle(StartX, StartY, iWidth, iHeight), GraphicsUnit.Pixel);  
  72.                 g.Dispose();  
  73.                 return bmpOut;  
  74.             }  
  75.             catch  
  76.             {  
  77.                 return null;  
  78.             }  
  79.         }  
  80.     }  
  81. }  

 目標其實都是new Rectangle(0, 0, iWidth, iHeight),縮放算法把整個原始圖都往目標區域裡塞new Rectangle(0, 0, bmp.Width, bmp.Height),而剪裁只是把原始區域上等寬等高的那個區域new Rectangle(StartX, StartY, iWidth, iHeight)1:1的塞到目標區域裡。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved