i m reading svg image from folder using this code
img="upload/temp/4.svg";
System.Drawing.Image img1 = System.Drawing.Image.FromFile(Server.MapPath("~/" + img));
HiddenField1.Value = img1.Height.ToString();
HiddenField2.Value = img1.Width.ToString();
i m getting error called out of memory while reading that image
Go to the complete details ...