Kayıtlar

Şubat, 2020 tarihine ait yayınlar gösteriliyor

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 (); }