ASP.NET Mvc İle Upload Edilen Resmi Yeniden Boyutlandırma - How to Resize Image While Uploading in Asp.net C# mvc
[HttpPost]
public ActionResult Index(HttpPostedFileBase file)
{
WebImage img = new WebImage(file.InputStream);
if (img.Width > 1000)
img.Resize(1000, 1000);
img.Save("path");
return View();
}
Yorumlar
Yorum Gönder
Yorumunuz alınmıştır. İncelenip yayımlanacaktır.