下面是我的代码,用于上传和映像并保存,以便稍后在GridView中显示,
如果图像太大,我怎样才能将图像调整为小图像然后保存?
if (this.fuUpload.HasFile == true)
{
string path = Server.MapPath(@"~\images");
string filename = this.fuUpload.FileName;
this.fuUpload.SaveAs(path + @"\" + filename);
this.image.ImageUrl = @"\images\" + filename;
}
答案 0 :(得分:0)
看看ImageResizer for ASP.NET:
答案 1 :(得分:0)
您可以使用System.Web.Helpers程序集中内置的WebImage 类。请查看Working with Images in an ASP.NET Web Pages指南。