人人做人人澡人人爽欧美,国产主播一区二区,久久久精品五月天,羞羞视频在线观看免费

當前位置:蘿卜系統下載站 > 技術開發教程 > 詳細頁面

C#編寫的生成縮略圖程序

C#編寫的生成縮略圖程序

更新時間:2022-08-08 文章作者:未知 信息來源:網絡 閱讀次數:

if(fileupload.PostedFile!=null)
     {    
      //addto為要添加的屬性,aboutfile為文件說明
      string nam = fileupload.PostedFile.FileName ;
      //取得文件名(抱括路徑)里最后一個"."的索引
      int i= nam.LastIndexOf(".");
      //取得文件擴展名
      string newext =nam.Substring(i);
      //這里我自動根據日期和文件大小不同為文件命名,確保文件名不重復
      DateTime now = DateTime.Now;
      string newname=now.DayOfYear.ToString()+fileupload.PostedFile.ContentLength.ToString();
      //保存文件到你所要的目錄,這里是IIS根目錄下的upload目錄.你可以改變.
      //注意: 我這里用Server.MapPath()取當前文件的相對目錄.在asp.net里"\"必須用"\\"代替,把"upload\\"改成"\\upload\\"就成了取當前文件的絕對目錄了
      fileupload.PostedFile.SaveAs(Server.MapPath("upload\\"+newname+newext));
      //得到這個文件的相關屬性:文件名,文件類型,文件大小
      //fname.Text=myFile.PostedFile.FileName;
      //fenc.Text=myFile.PostedFile.ContentType ;
      //fsize.Text=myFile.PostedFile.ContentLength.ToString();
      //下面是生成縮略圖
      System.Drawing.Image image,aNewImage;
      int width,height,newwidth,newheight;      
      image=System.Drawing.Image.FromFile(Server.MapPath("upload/"+newname.ToString()+newext.ToString()));
      System.Drawing.Image.GetThumbnailImageAbort callb =new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback);    
      width=image.Width;
      height=image.Height;
      if(firstpageshow.SelectedValue.ToString()=="1"&&fenlei.SelectedValue.ToString()=="5")
      {
       newwidth=203;newheight=86;       
       newheight=height*newwidth/width;
      }
      else if(isweekman.SelectedValue.ToString()=="1")
      {
       newwidth=171;newheight=111;
       newheight=height*newwidth/width;
      }
      else if(firstpageshow.SelectedValue.ToString()=="1"&&fenlei.SelectedValue.ToString()=="3")
      {
       newwidth=171;newheight=111;
       newheight=height*newwidth/width;
      }
      else
      {
       newwidth=62;newheight=80;
       newheight=height*newwidth/width;
      }
      aNewImage=image.GetThumbnailImage(newwidth,newheight,callb,new System.IntPtr());
      aNewImage.Save(Server.MapPath("upload\\"+"small_"+newname+newext));
      image.Dispose();
      //生成縮略圖 生成并保存完畢,保存名是在原圖名前加了一個small_。
      pic="upload/"+newname.ToString()+newext.ToString();
      smallpic="upload/small_"+newname.ToString()+newext.ToString();
     }


溫馨提示:喜歡本站的話,請收藏一下本站!

本類教程下載

系統下載排行

網站地圖xml | 網站地圖html
主站蜘蛛池模板: 洞头县| 莱州市| 棋牌| 伊吾县| 颍上县| 巫山县| 彩票| 黄平县| 临江市| 梁河县| 山阳县| 梁山县| 台前县| 伊春市| 福泉市| 嘉定区| 台中县| 井研县| 三门县| 额济纳旗| 淅川县| 拜城县| 宜阳县| 仁寿县| 文山县| 桐梓县| 邢台县| 莎车县| 米林县| 彭水| 囊谦县| 景宁| 六枝特区| 全州县| 增城市| 福鼎市| 崇明县| 左贡县| 朔州市| 德江县| 鹿泉市|