目標:
對圖片的格式,寬度和高度進行評估,然後將其保存在我的程序中。MVC中的圖片驗證
問題:
不知道如何使用HttpPostedFileBase file
,然後發送它Image newImage = Image.FromFile(xxxx);
不保存圖片在我的計劃。
- 驗證
- 保存圖片在我的 「App_Data文件」
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Add(HttpPostedFileBase file)
{
if (file.ContentLength > 0)
{
Image newImage = Image.FromFile(xxxx);
}
return Index();
}