欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-01-22 12:51:43
本文实例讲述了c#数字图像处理之图像缩放的方法。分享给大家供大家参考。具体如下: //定义图像缩放函数 private static bitmap zoomp(...

本文实例讲述了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#程序设计有所帮助。