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#程序设计有所帮助。