控件中国网现已改版,您看到的是老版本网站的镜像,系统正在为您跳转到新网站首页,请稍候.......
中国最专业的商业控件资讯网产品咨询电话:023-67870900 023-67871946
产品咨询EMAIL:SALES@COMPONENTCN.COM

C#中如何对图片进行缩放和剪裁

作者:不详 出处:不详 2010年02月08日 阅读:

应听众点播要求,今天说说用C#做图片的缩放和剪裁,相信很多人会对这部分内容感兴趣,毕竟这个操作太实用了。

  其实在GDI+中,缩放和剪裁可以看作同一个操作,无非就是原始区域的选择不同罢了。空口无凭,先看具体算法可能更好理解。

  /// Resize图片
  /// 
  /// 原始Bitmap
  /// 新的宽度
  /// 新的高度
  /// 保留着,暂时未用
  /// 处理以后的图片
  public static Bitmap KiResizeImage(Bitmap bmp, int newW, int newH, int Mode)
  {
  try
  {
  Bitmap b = new Bitmap(newW, newH);
  Graphics g = Graphics.FromImage(b);
  // 插值算法的质量
  g.IntERPolationMode = InterpolationMode.HighQualityBicubic;
  g.DrawImage(bmp, new Rectangle(0, 0, newW, newH), new Rectangle(0, 0, bmp.Width, bmp.Height), GraphicsUnit.Pixel);
  g.Dispose();
  return b;
  }
  catch
  {
  return null;
  }
  }
  // ===============================
  /// 
  /// 剪裁 -- 用GDI+
  /// 
  /// 原始Bitmap
  /// 开始坐标X
  /// 开始坐标Y
  /// 宽度
  /// 高度
  /// 剪裁后的Bitmap
  public static Bitmap KiCut(Bitmap b, int StartX, int StartY, int iWidth, int iHeight)
  {
  if (b == null)
  {
  return null;
  }
  int w = b.Width;
  int h = b.Height;
  if (StartX >= w || StartY >= h)
  {
  return null;
  }
  if (StartX + iWidth > w)
  {
  iWidth = w - StartX;
  }
  if (StartY + iHeight > h)
  {
  iHeight = h - StartY;
  }
  try
  {
  Bitmap bmpOut = new Bitmap(iWidth, iHeight, PixelFormat.Format24bppRgb);
  Graphics g = Graphics.FromImage(bmpOut);
  g.DrawImage(b, new Rectangle(0, 0, iWidth, iHeight), new Rectangle(StartX, StartY, iWidth, iHeight), GraphicsUnit.Pixel);
  g.Dispose();
  return bmpOut;
  }
  catch
  {
  return null;
  }
  }

  注意到区别了吗?提示,g.DrawImage中第二个new Rectangle。

  目标其实都是new Rectangle(0, 0, iWidth, iHeight),缩放算法把整个原始图都往目标区域里塞new Rectangle(0, 0, bmp.Width, bmp.Height),而剪裁只是把原始区域上等宽等高的那个区域new Rectangle(StartX, StartY, iWidth, iHeight)1:1的塞到目标区域里。很容易吧。

热推产品

  • ActiveReport... 强大的.NET报表设计、浏览、打印、转换控件,可以同时用于WindowsForms谀坔攀戀Forms平台下......
  • AnyChart AnyChart使你可以创建出绚丽的交互式的Flash和HTML5的图表和仪表控件。可以用于仪表盘的创......
首页 | 新闻中心 | 产品中心 | 技术文档 | 友情连接 | 关于磐岩 | 技术支持中心 | 联系我们 | 帮助中心 Copyright-2006 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 电话:023 - 67870900 传真:023 - 67870270 产品咨询:sales@componentcn.com 渝ICP备12000264号 法律顾问:元炳律师事务所 重庆市江北区塔坪36号维丰创意绿苑A座28-5 邮编:400020
在线客服
在线客服系统
在线客服
在线客服系统