六月婷婷综合激情-六月婷婷综合-六月婷婷在线观看-六月婷婷在线-亚洲黄色在线网站-亚洲黄色在线观看网站

明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線(xiàn)學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

用C#簡(jiǎn)單在DOTNET中完成縮略圖

[摘要]以前,在頁(yè)面上實(shí)現(xiàn)縮略圖必須借助第三方組件。現(xiàn)在,有了.NET,就可以很輕松地實(shí)現(xiàn)縮略圖。下面就是實(shí)現(xiàn)縮略圖的例子。ToThumbnailImage.aspx<%@ Page language="c#" Codebehind="ToThumbnailImage....
 以前,在頁(yè)面上實(shí)現(xiàn)縮略圖必須借助第三方組件。現(xiàn)在,有了.NET,就可以很輕松地實(shí)現(xiàn)縮略圖。下面就是實(shí)現(xiàn)縮略圖的例子。
ToThumbnailImage.aspx

<%@ Page language="c#" Codebehind="ToThumbnailImage.aspx.cs" Src="ToThumbnailImage.aspx.cs" AutoEventWireup="false"

Inherits="Exam_C.ToThumbnailImage" %>
<html>
  <head>
    <title>Lion互動(dòng)網(wǎng)絡(luò) =>生成縮略圖</title>
  </head>
  <body>
    <form id="Form1" method="post" runat="server">
     </form>
  </body>
</html>

ToThumbnailImage.aspx.cs

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
{
/// <summary>
/// ToThumbnailImage 的摘要說(shuō)明。
/// </summary>
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 窗體設(shè)計(jì)器生成的代碼
  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

  /// <summary>
  /// 獲取圖像編碼解碼器的所有相關(guān)信息
  /// </summary>
  /// <param name="mimeType">包含編碼解碼器的多用途網(wǎng)際郵件擴(kuò)充協(xié)議 (MIME) 類(lèi)型的字符串</param>
  /// <returns>返回圖像編碼解碼器的所有相關(guān)信息</returns>
  static ImageCodecInfo GetCodecInfo(string mimeType)
  {
   ImageCodecInfo[] CodecInfo = ImageCodecInfo.GetImageEncoders();
   foreach(ImageCodecInfo ici in CodecInfo)
   {
    if(ici.MimeType == mimeType)return ici;
   }
   return null;
  }

  /// <summary>
  /// 檢測(cè)擴(kuò)展名的有效性
  /// </summary>
  /// <param name="sExt">文件名擴(kuò)展名</param>
  /// <returns>如果擴(kuò)展名有效,返回true,否則返回false.</returns>
  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;
  }

  /// <summary>
  /// 保存圖片
  /// </summary>
  /// <param name="image">Image 對(duì)象</param>
  /// <param name="savePath">保存路徑</param>
  /// <param name="ici">指定格式的編解碼參數(shù)</param>
  void SaveImage(System.Drawing.Image image,string savePath,ImageCodecInfo ici)
  {
   //設(shè)置 原圖片 對(duì)象的 EncoderParameters 對(duì)象
   EncoderParameters parameters = new EncoderParameters(1);
   parameters.Param[0] = new EncoderParameter(Encoder.Quality, ((long) 90));
   image.Save(savePath, ici, parameters);
   parameters.Dispose();
  }
  #endregion

  #region Methods

  /// <summary>
  /// 生成縮略圖
  /// </summary>
  /// <param name="sourceImagePath">原圖片路徑(相對(duì)路徑)</param>
  /// <param name="thumbnailImagePath">生成的縮略圖路徑,如果為空則保存為原圖片路徑(相對(duì)路徑)</param>
  /// <param name="thumbnailImageWidth">縮略圖的寬度(高度與按源圖片比例自動(dòng)生成)</param>
  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 對(duì)象
   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;
   //計(jì)算圖片的比例
   if ((((double) width) / ((double) height)) >= 1.3333333333333333f)
   {
    num = ((height * ThumbnailImageWidth) / width);
   }
   else
   {
    ThumbnailImageWidth = ((width * num) / height);
   }
   if ((ThumbnailImageWidth < 1) (num < 1))
   {
    return;
   }
   //用指定的大小和格式初始化 Bitmap 類(lèi)的新實(shí)例
   Bitmap bitmap = new Bitmap(ThumbnailImageWidth, num, PixelFormat.Format32bppArgb);
   //從指定的 Image 對(duì)象創(chuàng)建新 Graphics 對(duì)象
   Graphics graphics = Graphics.FromImage(bitmap);
   //清除整個(gè)繪圖面并以透明背景色填充
   graphics.Clear(Color.Transparent);
   //在指定位置并且按指定大小繪制 原圖片 對(duì)象
   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

}
}


主站蜘蛛池模板: 四虎影视站长工具 | 日韩三级一区二区 | 青草视频在线观看免费网站 | 亚洲综合专区 | 污视频在线免费 | 亚洲成a人片在线观看88 | 永久免费毛片 | 日韩avwww| 七月丁香八月婷婷综合激情 | 天天干天天干天天干天天 | 特黄视频免费看 | 五月天欧美激情午夜情 | 午夜视频1000| 四虎精品影院在线观看视频 | 一国产一级淫片a免费播放口 | 色婷婷六月丁香七月婷婷 | 亚洲国产日韩综合久久精品 | 午夜三级理论在线观看视频 | 性视频网址 | 四虎必出精品亚洲高清 | 亚洲一区二区在线成人 | 素人啪啪 | 亚洲人网 | 欧美视频在线不卡 | 亚洲午夜国产精品 | 色爱区综合激情五月综合激情 | 中文字幕日韩精品一区口 | 全部免费国产潢色一级 | 在线观看日本 | 日本视频在线观看播放免费 | 日韩一级黄色毛片 | 日韩色综合 | 亚洲视频在线免费观看 | 在线免费午夜视频 | 青青影视 | 亚洲综合第一 | 日本在线视频免费 | 欧美一级黄色片在线观看 | 在线观看日本 | 欧美综合国产精品日韩一 | 最近更新免费中文字幕大全 |