当前位置: 移动技术网 > IT编程>开发语言>c# > C#数字图像处理之图像缩放的方法

C#数字图像处理之图像缩放的方法

2019年07月18日  | 移动技术网IT编程  | 我要评论

本文实例讲述了c#数字图像处理之图像缩放的方法。分享给大家供大家参考。具体如下:

//定义图像缩放函数
private static bitmap zoomp(bitmap a, float s, float v)
{
  bitmap bmp = new bitmap((int)(a.width * s), (int)(a.height * v), system.drawing.imaging.pixelformat.format24bpprgb);
  graphics g = graphics.fromimage(bmp);
  g.clear(color .white );
  g.scaletransform(s,v);
  g.drawimage(a,0,0,a.width ,a.height );
  a = bmp;
  return a;
}

希望本文所述对大家的c#程序设计有所帮助。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网