主页 > 知识库 > c#生成缩略图不失真的方法实例分享

c#生成缩略图不失真的方法实例分享

热门标签:福州人工智能电销机器人加盟 地图标注多少钱一张 怎样给陕西地图标注颜色 ai电销机器人对贷款有帮助吗 400电话办理信任翰诺科技 宿迁智能外呼系统排名 云狐人工智能电话机器人 广州销售外呼系统定制 电销机器人 数据

复制代码 代码如下:

/// 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#保存图片到数据库并读取显示图片的方法
  • C#中按指定质量保存图片的实例代码
  • C# 手动/自动保存图片的实例代码
  • c#读取图像保存到数据库中(数据库保存图片)
  • C#给图片添加水印完整实例
  • C#给图片加水印的简单实现方法
  • c#多图片上传并生成缩略图的实例代码
  • c#生成缩略图的实现方法
  • C#实现的上传图片、保存图片、加水印、生成缩略图功能示例

标签:大兴安岭 延安 新疆 曲靖 绵阳 黄南 焦作 宜春

巨人网络通讯声明:本文标题《c#生成缩略图不失真的方法实例分享》,本文关键词  生成,缩,略图,不失,真的,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《c#生成缩略图不失真的方法实例分享》相关的同类信息!
  • 本页收集关于c#生成缩略图不失真的方法实例分享的相关信息资讯供网民参考!
  • 推荐文章