先看代碼:
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
/**//// <summary>
///
/// **生成高質量縮略圖程序**
///
/// File: GenerateThumbnail.cs
///
/// Author: 周振興 (Zxjay 飄遙)
///
/// E-Mail:
[email protected] ///
/// 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 格式。