在ASP.NET中上傳圖片並產生縮圖的C#源碼

來源:互聯網
上載者:User
asp.net|上傳|上傳圖片|縮圖 在ASP.NET中上傳圖片並產生縮圖的C#源碼

 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.IO;
  using System.Drawing.Imaging;
  
  namespace eMeng.Exam
  {
  /// <summary>
  /// Thumbnail 的摘要說明。
  /// </summary>
  public class Thumbnail : System.Web.UI.Page
  {
  protected System.Web.UI.WebControls.Label Label1;
  protected System.Web.UI.WebControls.Button Button1;
  
  private void Page_Load(object sender, System.EventArgs e)
  {
  // 在此處放置使用者代碼以初始化頁面
  Label1.Text = "<h3>在ASP.NET裡輕鬆實炙趼醞?lt;/h3>";
  Button1.Text = "上傳並顯示縮圖";
  
  }
  
  #region Web Form設計器產生的程式碼
  override protected void OnInit(EventArgs e)
  {
  //
  // CODEGEN: 該調用是 ASP.NET Web Form設計器所必需的。
  //
  InitializeComponent();
  base.OnInit(e);
  }
  
  /// <summary>
  /// 設計器支援所需的方法 - 不要使用代碼編輯器修改
  /// 此方法的內容。
  /// </summary>
  private void InitializeComponent()
  {
  this.Button1.Click += new System.EventHandler(this.Button1_Click);
  this.Load += new System.EventHandler(this.Page_Load);
  
  }
  #endregion
  
  private void Button1_Click(object sender, System.EventArgs e)
  {
  HttpFileCollection MyFileColl = HttpContext.Current.Request.Files;
  HttpPostedFile MyPostedFile = MyFileColl[0];
  
  if (MyPostedFile.ContentType.ToString().ToLower().IndexOf("image") < 0)
  {
  Response.Write("無效的圖形格式。");
  return;
  }
  GetThumbNail(MyPostedFile.FileName, 100, 100,
  MyPostedFile.ContentType.ToString(), false, MyPostedFile.InputStream);
  }
  private System.Drawing.Imaging.ImageFormat GetImageType(object strContentType)
  {
  if ((strContentType.ToString().ToLower()) == "image/pjpeg")
  {
  return System.Drawing.Imaging.ImageFormat.Jpeg;
  }
  else if ((strContentType.ToString().ToLower()) == "image/gif")
  {
  return System.Drawing.Imaging.ImageFormat.Gif;
  }
  else if ((strContentType.ToString().ToLower()) == "image/bmp")
  {
  return System.Drawing.Imaging.ImageFormat.Bmp;
  }
  else if ((strContentType.ToString().ToLower()) == "image/tiff")
  {
  return System.Drawing.Imaging.ImageFormat.Tiff;
  }
  else if ((strContentType.ToString().ToLower()) == "image/x-icon")
  {
  return System.Drawing.Imaging.ImageFormat.Icon;
  }
  else if ((strContentType.ToString().ToLower()) == "image/x-png")
  {
  return System.Drawing.Imaging.ImageFormat.Png;
  }
  else if ((strContentType.ToString().ToLower()) == "image/x-emf")
  {
  return System.Drawing.Imaging.ImageFormat.Emf;
  }
  else if ((strContentType.ToString().ToLower()) == "image/x-exif")
  {
  return System.Drawing.Imaging.ImageFormat.Exif;
  }
  else if ((strContentType.ToString().ToLower()) == "image/x-wmf")
  {
  return System.Drawing.Imaging.ImageFormat.Wmf;
  }
  else
  {
  return System.Drawing.Imaging.ImageFormat.MemoryBmp;
  }
  }
  
  private void GetThumbNail(string strFileName, int iWidth, int iheight,
  string strContentType, bool blnGetFromFile, System.IO.Stream ImgStream)
  {
  System.Drawing.Image oImg;
  
  if (blnGetFromFile)
  {
  oImg = System.Drawing.Image.FromFile(strFileName);
  }
  else
  {
  oImg = System.Drawing.Image.FromStream(ImgStream);
  }
  oImg = oImg.GetThumbnailImage(iWidth, iheight, null, IntPtr.Zero);
  string strGuid = System.Guid.NewGuid().ToString().ToUpper();
  string strFileExt = strFileName.Substring(strFileName.LastIndexOf("."));
  Response.ContentType = strContentType;
  MemoryStream MemStream = new MemoryStream();
  oImg.Save(MemStream, GetImageType(strContentType));
  MemStream.WriteTo(Response.OutputStream);
  }
  
  }
  } 

[1] [2] 下一頁  



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.