在网站建设中,关于图片是必不可少的,后台管理中往往需要上传图片,大的图片在网络中传输速率很慢,很不理想,因此解决办法是,用户上传图片时候,保存一个图片的缩略图,在网页显示用缩略图,用户下载,使用原图,下面是通过搜索资料,整理的c#关于保存图片缩略图的方法,用户只需要传入适当参数,调用此方法就可以生成缩略图。
创新互联是专业的东昌网站建设公司,东昌接单;提供成都网站制作、成都网站建设、外贸营销网站建设,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行东昌网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; public partial class upload : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } } ////// 图片等比缩放 /// /// 原图地址加名称 /// 缩略图存放地址 /// 缩略图名称 /// 指定的最大宽度 /// 指定的最大高度 public static void zoomauto(string initpath, string savepath,string smallname, double targetwidth, double targetheight) { //虚拟路径转绝对路径 initpath = System.Web.HttpContext.Current.Server.MapPath(initpath); savepath = System.Web.HttpContext.Current.Server.MapPath(savepath); //创建目录 string dir = Path.GetDirectoryName(savepath); if (!Directory.Exists(dir)) Directory.CreateDirectory(dir); //原始图片(获取原始图片创建对象,并使用流中嵌入的颜色管理信息) System.Drawing.Image initp_w_picpath = System.Drawing.Image.FromFile(initpath); //原图宽高均小于模版,不作处理,直接保存 if (initp_w_picpath.Width <= targetwidth && initp_w_picpath.Height <= targetheight) { //保存 initp_w_picpath.Save(savepath + smallname, System.Drawing.Imaging.ImageFormat.Jpeg); } else { //缩略图宽、高计算 double newwidth = initp_w_picpath.Width; double newheight = initp_w_picpath.Height; //宽大于高或宽等于高(横图或正方) if (initp_w_picpath.Width > initp_w_picpath.Height || initp_w_picpath.Width == initp_w_picpath.Height) { //如果宽大于模版 if (initp_w_picpath.Width > targetwidth) { //宽按模版,高按比例缩放 newwidth = targetwidth; newheight = initp_w_picpath.Height * (targetwidth / initp_w_picpath.Width); } } //高大于宽(竖图) else { //如果高大于模版 if (initp_w_picpath.Height > targetheight) { //高按模版,宽按比例缩放 newheight = targetheight; newwidth = initp_w_picpath.Width * (targetheight / initp_w_picpath.Height); } } //生成新图 //新建一个bmp图片 System.Drawing.Image newp_w_picpath = new System.Drawing.Bitmap((int)newwidth, (int)newheight); //新建一个画板 System.Drawing.Graphics newg = System.Drawing.Graphics.FromImage(newp_w_picpath); //设置质量 newg.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic; newg.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; //置背景色 newg.Clear(System.Drawing.Color.White); //画图 newg.DrawImage(initp_w_picpath, new System.Drawing.Rectangle(0, 0, newp_w_picpath.Width, newp_w_picpath.Height), new System.Drawing.Rectangle(0, 0, initp_w_picpath.Width, initp_w_picpath.Height), System.Drawing.GraphicsUnit.Pixel); //保存缩略图 newp_w_picpath.Save(savepath + smallname, System.Drawing.Imaging.ImageFormat.Jpeg); //释放资源 newg.Dispose(); newp_w_picpath.Dispose(); initp_w_picpath.Dispose(); } } }