我使用asp.net mvc 4
在我的服务器上上传图片。我在上传之前使用WebImage
类来调整图片大小。但我现在确定原因,但上传后我的图片文件大小变得越来越大,因为我在上传之前将原始图片调整为较小的尺寸。这是我的上传代码,
[HttpPost]
public ActionResult FlatImageOne(HttpPostedFileBase file, int getFlId)
{
if (file != null && file.ContentLength > 0)
{
string picName = getFlId.ToString() + "-0";
WebImage img = new WebImage(file.InputStream);
string picExt = Path.GetExtension(file.FileName);
if (picExt == ".jpg" || picExt == ".gif" || picExt == ".jpeg" || picExt == ".png")
{
picExt = "PNG";
string path = System.IO.Path.Combine(Server.MapPath("~/Images/Flats/"), picName);
var img_resized = img.Resize(721, 482, false, false);
img_resized.Save(path, picExt);
return RedirectToAction("FlatImageOne", new { FlId = getFlId });
}
else
{
return RedirectToAction("FlatImageOne", new { FlId = getFlId });
}
}
else
{
return RedirectToAction("FlatImageOne", new { FlId = getFlId });
}
}
我该如何解决这个问题?急需这个帮助!感谢。