新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
C#實現(xiàn)縮略圖簡單分析
C#語言有很多值得學習的地方,這里我們主要介紹C#實現(xiàn)縮略圖,包括介紹C#實現(xiàn)縮略圖必須借助第三方組件等方面。

成都網(wǎng)絡公司-成都網(wǎng)站建設公司創(chuàng)新互聯(lián)公司十多年經(jīng)驗成就非凡,專業(yè)從事成都網(wǎng)站設計、成都做網(wǎng)站,成都網(wǎng)頁設計,成都網(wǎng)頁制作,軟文營銷,1元廣告等。十多年來已成功提供全面的成都網(wǎng)站建設方案,打造行業(yè)特色的成都網(wǎng)站建設案例,建站熱線:18980820575,我們期待您的來電!
以前,在頁面上C#實現(xiàn)縮略圖必須借助第三方組件。現(xiàn)在,有了.NET,就可以很輕松地C#實現(xiàn)縮略圖。
下面就是C#實現(xiàn)縮略圖的例子。
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- using System.Drawing.Imaging;
- namespace Exam_C
- {
- ///
- /// ToThumbnailImage 的摘要說明。
- ///
- public class ToThumbnailImage : System.Web.UI.Page
- {
- /*
- Create By lion
- 2003-05-20 19:00
- Copyright (C) 2004 www.LionSky.Net. All rights reserved.
- Web: http://www.Lionsky.net ;
- Email: lion-a@sohu.com
- */
- static Hashtable htmimes=new Hashtable();
- internal readonly string AllowExt = ".jpe|.jpeg|.jpg|.png|.tif|.tiff|.bmp";
- #region Web 窗體設計器生成的代碼
- override protected void OnInit(EventArgs e)
- {
- #region htmimes[".jpe"]="image/jpeg";
- htmimes[".jpeg"]="image/jpeg";
- htmimes[".jpg"]="image/jpeg";
- htmimes[".png"]="image/png";
- htmimes[".tif"]="image/tiff";
- htmimes[".tiff"]="image/tiff";
- htmimes[".bmp"]="image/bmp";
- #endregion
- //調(diào)用生成縮略圖方法
- ToThumbnailImages("lionsky.jpg","b.gif",300);
- }
- #endregion
- #region Helper
- ///
- /// 獲取圖像編碼解碼器的所有相關信息
- ///
- /// name="mimeType">包含編碼解碼器的多用途網(wǎng)際郵件擴充協(xié)議 (MIME) 類型的字符串
- ///
返回圖像編碼解碼器的所有相關信息 - static ImageCodecInfo GetCodecInfo(string mimeType)
- {
- ImageCodecInfo[] CodecInfo = ImageCodecInfo.GetImageEncoders();
- foreach(ImageCodecInfo ici in CodecInfo)
- {
- if(ici.MimeType == mimeType)return ici;
- }
- return null;
- }
- ///
- /// 檢測擴展名的有效性
- ///
- /// name="sExt">文件名擴展名
- ///
如果擴展名有效,返回true,否則返回false. - bool CheckValidExt(string sExt)
- {
- bool flag=false;
- string[] aExt = AllowExt.Split(''|'');
- foreach(string filetype in aExt)
- {
- if(filetype.ToLower()==sExt)
- {
- flag = true;
- break;
- }
- }
- return flag;
- }
- ///
- /// 保存圖片
- ///
- /// name="image">Image 對象
- /// name="savePath">保存路徑
- /// name="ici">指定格式的編解碼參數(shù)
- void SaveImage(System.Drawing.Image image,string savePath,ImageCodecInfo ici)
- {
- //設置 原圖片 對象的 EncoderParameters 對象
- EncoderParameters parameters = new EncoderParameters(1);
- parameters.Param[0] = new EncoderParameter(Encoder.Quality, ((long) 90));
- image.Save(savePath, ici, parameters);
- parameters.Dispose();
- }
- #endregion
- #region Methods
- ///
- /// 生成縮略圖
- ///
- /// name="sourceImagePath">原圖片路徑(相對路徑)
- /// name="thumbnailImagePath">生成的縮略圖路徑,
如果為空則保存為原圖片路徑(相對路徑)- /// name="thumbnailImageWidth">
縮略圖的寬度(高度與按源圖片比例自動生成)- public void ToThumbnailImages(string sourceImagePath,
string thumbnailImagePath,int thumbnailImageWidth)- {
- string SourceImagePath = sourceImagePath;
- string ThumbnailImagePath = thumbnailImagePath;
- int ThumbnailImageWidth = thumbnailImageWidth;
- string sExt = SourceImagePath.Substring(SourceImagePath.LastIndexOf(".")).ToLower();
- if(SourceImagePath.ToString()==System.String.Empty)
throw new NullReferenceException("SourceImagePath is null!");- if(!CheckValidExt(sExt))
- {
- throw new ArgumentException
("原圖片文件格式不正確,支持的格式有[ "+ AllowExt +" ]","SourceImagePath");- }
- //從 原圖片 創(chuàng)建 Image 對象
- System.Drawing.Image image = System.Drawing.Image.FromFile
(HttpContext.Current.Server.MapPath(SourceImagePath));- int num = ((ThumbnailImageWidth / 4) * 3);
- int width = image.Width;
- int height = image.Height;
- //計算圖片的比例
- if ((((double) width) / ((double) height)) >= 1.3333333333333333f)
- {
- num = ((height * ThumbnailImageWidth) / width);
- }
- else
- {
- ThumbnailImageWidth = ((width * num) / height);
- }
- if ((ThumbnailImageWidth < 1) || (num < 1))
- {
- return;
- }
- //用指定的大小和格式初始化 Bitmap 類的新實例
- Bitmap bitmap = new Bitmap(ThumbnailImageWidth, num, PixelFormat.Format32bppArgb);
- //從指定的 Image 對象創(chuàng)建新 Graphics 對象
- Graphics graphics = Graphics.FromImage(bitmap);
- //清除整個繪圖面并以透明背景色填充
- graphics.Clear(Color.Transparent);
- //在指定位置并且按指定大小繪制 原圖片 對象
- graphics.DrawImage(image, new Rectangle(0, 0, ThumbnailImageWidth, num));
- image.Dispose();
- try
- {
- //將此 原圖片 以指定格式并用指定的編解碼參數(shù)保存到指定文件
- string savepath = (ThumbnailImagePath==null?SourceImagePath:ThumbnailImagePath);
- SaveImage(bitmap,HttpContext.Current.Server.MapPath(savepath),
GetCodecInfo((string)htmimes[sExt]));- }
- catch(System.Exception e)
- {
- throw e;
- }
- finally
- {
- bitmap.Dispose();
- graphics.Dispose();
- }
- }
- #endregion
- }
- }
【編輯推薦】
- C#字符ASCII碼學習經(jīng)驗
- C#數(shù)值類型之間的轉換概述
- 日期型數(shù)據(jù)轉換成C#長整型數(shù)據(jù)
- C#查看Excel對象模型分析
- C#日期型數(shù)據(jù)簡單剖析
分享標題:C#實現(xiàn)縮略圖簡單分析
URL分享:http://www.dlmjj.cn/article/dpijjjg.html


咨詢
建站咨詢
