我通过上传得到一张图片,我想将其转换为图像文件而不保存它。
我该怎么做?
public HttpPostedFileBase BasicPicture { get; set; }
var fileName = Path.GetFileName(BasicPicture.FileName);
// store the file inside ~/App_Data/uploads folder
var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
BasicPicture.SaveAs(path);
通过此代码,我可以将图片保存在服务器上,但我想将其转换为图像
Image img=(Image) BasicPicture;
但它不起作用。