復制代碼 代碼如下:
/// 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)的上傳圖片、保存圖片、加水印、生成縮略圖功能示例