C# 產生高品質縮圖程式—終極演算法
來源:互聯網
上載者:User
先看代碼:
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
/**//// <summary>
///
/// **產生高品質縮圖程式**
///
/// File: GenerateThumbnail.cs
///
/// Author: 周振興 (Zxjay 飄遙)
///
/// E-Mail: tda7264@163.com
///
/// Date: 07-04-07
///
/// </summary>
public class GenerateThumbnail
...{
/**//// <summary>
/// 產生縮圖 靜態方法
/// </summary>
/// <param name="pathImageFrom"> 源圖的路徑(含檔案名稱及副檔名) </param>
/// <param name="pathImageTo"> 產生的縮圖所儲存的路徑(含檔案名稱及副檔名)
/// 注意:副檔名一定要與產生的縮圖格式相對應 </param>
/// <param name="width"> 欲產生的縮圖 "畫布" 的寬度(像素值) </param>
/// <param name="height"> 欲產生的縮圖 "畫布" 的高度(像素值) </param>
public static void GenThumbnail(string pathImageFrom,string pathImageTo,int width,int height)
...{
Image imageFrom = null;
try
...{
imageFrom = Image.FromFile(pathImageFrom);
}
catch
...{
//throw;
}
if (imageFrom == null)
...{
return;
}
// 源圖寬度及高度
int imageFromWidth = imageFrom.Width;
int imageFromHeight = imageFrom.Height;
// 產生的縮圖實際寬度及高度
int bitmapWidth = width;
int bitmapHeight = height;
// 產生的縮圖在上述"畫布"上的位置
int X = 0;
int Y = 0;
// 根據源圖及欲產生的縮圖尺寸,計算縮圖的實際尺寸及其在"畫布"上的位置
if (bitmapHeight * imageFromWidth > bitmapWidth * imageFromHeight)
...{
bitmapHeight = imageFromHeight * width / imageFromWidth;
Y = (height - bitmapHeight) / 2;
}
else
...{
bitmapWidth = imageFromWidth * height / imageFromHeight;
X = (width - bitmapWidth) / 2;
}
// 建立畫布
Bitmap bmp = new Bitmap(width, height);
Graphics g = Graphics.FromImage(bmp);
// 用白色清空
g.Clear(Color.White);
// 指定高品質的雙立方插值法。執行預篩選以確保高品質的收縮。此模式可產生品質最高的轉換映像。
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
// 指定高品質、低速度呈現。
g.SmoothingMode = SmoothingMode.HighQuality;
// 在指定位置並且按指定大小繪製指定的 Image 的指定部分。
g.DrawImage(imageFrom, new Rectangle(X, Y, bitmapWidth, bitmapHeight), new Rectangle(0, 0, imageFromWidth, imageFromHeight), GraphicsUnit.Pixel);
try
...{
//經測試 .jpg 格式縮圖大小與品質等最優
bmp.Save(pathImageTo, ImageFormat.Jpeg);
}
catch
...{
}
finally
...{
//顯示釋放資源
imageFrom.Dispose();
bmp.Dispose();
g.Dispose();
}
}
}
產生的縮圖大小一定,無剪裁、無變形。
可以測試一下各種圖形格式、圖形品質、呈現方式產生的縮圖的大小和視覺品質。
經測試:Vista 原預設案頭 .jpg 格式 尺寸:1024*768,
產生原尺寸大小的縮圖,比較如下:
原圖.jpg格式,223 KB
.jpg 102KB
.png 1816 KB
.gif 228 KB
.tiff 2000KB 以上
…
視覺上 除 .gif 品質較差外,其他的與源圖肉眼無法區別(本人有點近視^-^)
在考慮到專利及通用性等因素,推薦用 .jpg 格式。