程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 如何把存儲在數據庫中的圖片根據自己的需要的大小顯示出來

如何把存儲在數據庫中的圖片根據自己的需要的大小顯示出來

編輯:.NET實例教程
     文件1:showimage.ASPx.cs
  
  
  namespace ImageResizing {
  
  public class MainDisplay : System.Web.UI.Page {
  
  public void Page_Load(System.Object sender, System.EventArgs e) {
  
  try {
  
  System.Int32 _ImgID = System.Convert.ToInt32(Request.QueryString["ImgID"]);
  
  System.Int32 _height = System.Convert.ToInt32(Request.QueryString["height"]);
  
  System.Int32 _width = System.Convert.ToInt32(Request.QueryString["width"]);
  
  System.Data.SqlClient.SqlConnection Con = new System.Data.SqlClIEnt.SqlConnection( "server=localhost;database=northwind;trusted_connection=true" );
  
  System.String SqlCmd = "SELECT * FROM Images WHERE ImageID = @ImageID";
  
  System.Data.SqlClient.SqlCommand SqlCmdObj = new System.Data.SqlClIEnt.SqlCommand( SqlCmd, Con );
  
  SqlCmdObj.Parameters.Add("@ImageID", System.Data.SqlDbType.Int).Value = _ImgID;
  
  Con.Open();
  
  System.Data.SqlClIEnt.SqlDataReader SqlReader = SqlCmdObj.ExecuteReader();
  
  SqlReader.Read();
  
  System.Web.HttpContext.Current.Response.ContentType = "image/pjpeg";
  
  System.Drawing.Image _image = System.Drawing.Image.FromStream( new System.IO.MemoryStream( (byte[])SqlReader["Image"] ) );
  
  System.Drawing.Image _newimage = _image.GetThumbnailImage( _width, _height, null, new System.IntPtr());
  
  _newimage.Save( System.Web.HttpContext.Current.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg );
  
  } catch (System.Exception Ex) {
  
  System.Web.HttpContext.Current.Trace.Write(Ex.Message.ToString());
  
  }
  
  }
  
  }
  
  }
  
  
  文件2:顯示圖片之用,把querystring傳入
  <Html>
  <body>
  
  <img src="showimage.ASPx?ImgID=202&height=150&width=150">
  </body>
  </Html> 
   
   
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved