国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

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

2024-07-10 13:19:21
字體:
供稿:網(wǎng)友

復(fù)制代碼 代碼如下:


/// <summary>
/// 獲得縮微圖
/// </summary>
/// <returns></returns>
  public bool GetThumbImg()
{
try
{
string imgpath; //原始路徑
     if(imgsourceurl.IndexOf("/",0)<0) //使用的是相對路徑
     {
imgpath = HttpContext.Current.Server.MapPath(imgsourceurl); //轉(zhuǎn)化為物理路徑
     }
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);//轉(zhuǎn)化為物理路徑
      }
imgThumb.Save(thumbpath,ImageFormat.Jpeg);
imgThumb.Dispose();
return true;
}
}
catch
{
throw;
}
}

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 华池县| 巴彦县| 麻栗坡县| 宜兰市| 宣化县| 瓦房店市| 西青区| 益阳市| 烟台市| 象州县| 文山县| 江源县| 明水县| 固安县| 霍城县| 湖州市| 安塞县| 英德市| 遂平县| 镇平县| 顺平县| 礼泉县| 双辽市| 鲁甸县| 西盟| 慈溪市| 郁南县| 四子王旗| 昌乐县| 牟定县| 策勒县| 布尔津县| 馆陶县| 河东区| 金塔县| 武城县| 临洮县| 甘德县| 六盘水市| 井陉县| 铜山县|