如何在. net实现了上传图片按比例自动缩小或放大
来源:爱站网时间:2020-10-23编辑:网友分享
在开发的早期,我们使用自动生产固定尺寸的图片进行显示,我们发现它已经不能满足我们的需求了,因为没有对上传原始图像的限制,所有要使用的图片并没有完全缩小,下面爱站技术频道小编为你介绍如何在. net实现了上传图片按比例自动缩小或放大。
在开发的早期,我们使用自动生产固定尺寸的图片进行显示,我们发现它已经不能满足我们的需求了,因为没有对上传原始图像的限制,所有要使用的图片并没有完全缩小,下面爱站技术频道小编为你介绍如何在. net实现了上传图片按比例自动缩小或放大。
具体方法如下:
/////// 按比例缩小图片,自动计算宽度 /// /// 源图文件名(包括路径) /// 缩小后保存为文件名(包括路径) /// 缩小至高度 public void SmallPicWidth(string strOldPic, string strNewPic, int intHeight) { System.Drawing.Bitmap objPic, objNewPic; try { objPic = new System.Drawing.Bitmap(strOldPic); int intWidth = (intHeight / objPic.Height) * objPic.Width; objNewPic = new System.Drawing.Bitmap(objPic, intWidth, intHeight); objNewPic.Save(strNewPic); } catch (Exception exp) { throw exp; } finally { objPic = null; objNewPic = null; } } /**/////// 缩小图片 /// /// 源图文件名(包括路径) /// 缩小后保存为文件名(包括路径) /// 缩小至宽度 /// 缩小至高度 public void SmallPic(string strOldPic, string strNewPic, int intWidth, int intHeight) { System.Drawing.Bitmap objPic, objNewPic; try { objPic = new System.Drawing.Bitmap(strOldPic); objNewPic = new System.Drawing.Bitmap(objPic, intWidth, intHeight); objNewPic.Save(strNewPic); } catch (Exception exp) { throw exp; } finally { objPic = null; objNewPic = null; } }
上述是爱站技术频道小编带来的如何在. net实现了上传图片按比例自动缩小或放大,开发最大的难度是创新和技术,只要这两方面过关了,基本上就没有太大的问题。