I have following code that I am using to upload an image to my website. The image is first uploaded to a temporary folder then it get resized after that the new image is uploaded to main image folder.
FileUpload1.SaveAs(Server.MapPath("~/TEMP/tmpimg.jpg"));
System.Drawing.Image originalImage = System.Drawing.Image.FromFile(Server.MapPath("~/TEMP/tmpimg.jpg"));
System.Drawing.Image MainImg = new SPCL().ResizeImage(originalImage, 700, 600, false);
MainImg.Save(Server.MapPath("~/Images/Home/Home1.jpg"));
This is giving following exception:
System.IO.FileNotFoundException: C:\site\wwwroot\TEMP\tmpimg.jpg at System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement) at Settings.saveImages() at Settings.saveSettings()
at System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement) at Settings.saveImages() at Settings.saveSettings()
I have set all the write permissions on the folder and even tried making all permissions enabled on all folders of the website (when I got irritated ;))
The error is coming at this line System.Drawing.Image.FromFile(Server.MapPath("~/TEMP/tmpimg.jpg"));
The file is not being created at the specified path. Please any one have any idea why this is happening and how can I solve this issue?
originalImagebefore its definition. It will surely give a null value. or I think it will be a compiler error. – Shiva Pareek Jan 12 at 18:59try{}catch{}– DJ KRAZE Jan 12 at 19:03