主頁 > 知識庫 > c#生成縮略圖不失真的方法實例分享

c#生成縮略圖不失真的方法實例分享

熱門標簽:福州人工智能電銷機器人加盟 地圖標注多少錢一張 怎樣給陜西地圖標注顏色 ai電銷機器人對貸款有幫助嗎 400電話辦理信任翰諾科技 宿遷智能外呼系統(tǒng)排名 云狐人工智能電話機器人 廣州銷售外呼系統(tǒng)定制 電銷機器人 數(shù)據(jù)

復制代碼 代碼如下:

/// summary>
/// 獲得縮微圖
/// /summary>
/// returns>/returns>
  public bool GetThumbImg()
{
try
{
string imgpath; //原始路徑
     if(imgsourceurl.IndexOf("\",0)0) //使用的是相對路徑
     {
imgpath = HttpContext.Current.Server.MapPath(imgsourceurl); //轉化為物理路徑
     }
else
{
imgpath=imgsourceurl;
}
System.Drawing.Image sourceImage = System.Drawing.Image.FromFile(imgpath);
int width = sourceImage.Width;
int height = sourceImage.Height;
if(thumbwidth = 0)
{
thumbwidth = 120;
}
if(thumbwidth >= width)
{
return false;
}
else
{
(thumbwidth,thHeight*thumbwidth/thWidth,null,IntPtr.Zero);
Image imgThumb=new System.Drawing.Bitmap(thumbwidth,height*thumbwidth/width);
System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(imgThumb);
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
g.DrawImage(sourceImage, new Rectangle(0, 0, thumbwidth,height*thumbwidth/width), 0, 0, width, height, GraphicsUnit.Pixel);
string thumbpath="";
sourceImage.Dispose();
if(thumburl=="")
{
thumbpath=imgpath;
}
if(thumbpath.IndexOf("\",0)0)//使用的是相對路徑
      {
thumbpath=HttpContext.Current.Server.MapPath(thumburl);//轉化為物理路徑
      }
imgThumb.Save(thumbpath,ImageFormat.Jpeg);
imgThumb.Dispose();
return true;
}
}
catch
{
throw;
}
}

您可能感興趣的文章:
  • c#批量上傳圖片到服務器示例分享
  • C# 最齊全的上傳圖片方法
  • C#保存圖片到數(shù)據(jù)庫并讀取顯示圖片的方法
  • C#中按指定質量保存圖片的實例代碼
  • C# 手動/自動保存圖片的實例代碼
  • c#讀取圖像保存到數(shù)據(jù)庫中(數(shù)據(jù)庫保存圖片)
  • C#給圖片添加水印完整實例
  • C#給圖片加水印的簡單實現(xiàn)方法
  • c#多圖片上傳并生成縮略圖的實例代碼
  • c#生成縮略圖的實現(xiàn)方法
  • C#實現(xiàn)的上傳圖片、保存圖片、加水印、生成縮略圖功能示例

標簽:大興安嶺 延安 新疆 曲靖 綿陽 黃南 焦作 宜春

巨人網絡通訊聲明:本文標題《c#生成縮略圖不失真的方法實例分享》,本文關鍵詞  生成,縮,略圖,不失,真的,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《c#生成縮略圖不失真的方法實例分享》相關的同類信息!
  • 本頁收集關于c#生成縮略圖不失真的方法實例分享的相關信息資訊供網民參考!
  • 推薦文章