|
//上传图片并生成缩略图 public string Outputimg(HttpPostedFile fileUpload) { #region Outputimg Graphics g = null; System.Drawing.Image upimage = null; System.Drawing.Image thumimg = null; System.Drawing.Image simage = null; Bitmap outputfile = null; String filename = ""; try { filename = String.Format("{0}{1}", Guid.NewGuid().ToString("N"), Path.GetExtension(fileUpload.FileName)); string smallpath = "//111.111.1.111/uploadfile/smallimg/"; string bigpath = "//111.111.1.111/uploadfile/bigimg/"; int width, height, newwidth, newheight; System.Drawing.Image.GetThumbnailImageAbort callb = new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback); if (!Directory.Exists(smallpath)) { Directory.CreateDirectory(smallpath); } if (!Directory.Exists(bigpath)) { Directory.CreateDirectory(bigpath); } fileUpload.SaveAs("//111.111.1.111/uploadfile/bigimg/" + filename);
Stream upimgfile = fileUpload.InputStream; string simagefile = "//111.111.1.111/uploadfile/bigimg/" + filename; //要加水印的文件 simage = System.Drawing.Image.FromFile(simagefile); upimage = System.Drawing.Image.FromStream(upimgfile); //上传的图片 width = upimage.Width; height = upimage.Height; //[color=#FF0000]宽、高[/color] thumimg = upimage.GetThumbnailImage(140, 120, callb, IntPtr.Zero); outputfile = new Bitmap(upimage); g = Graphics.FromImage(outputfile); g.DrawImage(simage, new Rectangle(upimage.Width - simage.Width, upimage.Height - simage.Height, upimage.Width, upimage.Height), 0, 0, upimage.Width, upimage.Height, GraphicsUnit.Pixel);
thumimg.Save("//111.111.1.111/uploadfile/smallimg/" + filename); outputfile.Dispose(); } catch { // throw ex; } finally { if (g != null) g.Dispose(); if (thumimg != null) thumimg.Dispose(); if (upimage != null) upimage.Dispose(); if (simage != null) simage.Dispose();
} return filename; #endregion } public bool ThumbnailCallback() { return false; } //结束 [办公软件]在Powerpoint中如何插入Flash动画 [办公软件]根除PowerPoint中Flash动画不能正常播放的问题 [办公软件]Office(Word,Excel)密码破解软件(Office Password… [办公软件]powerpoin自定义播放FLASH动画 [办公软件]PPT插入Flash其属性无自定义的两种解决办法 [办公软件]如何在excel中插入flash动画 [Sql Server]ASP.NET利用SQLDMO实现数据库的备份与恢复下篇 [Sql Server]ASP.NET利用SQLDMO实现数据库的备份与恢复上篇 [Web开发]ASP.NET地址重写、使用伪静态、页面回发处理 [Web开发]asp.net(c#)发送邮件代码
|