//水印图片
string shuiyin = "~/shuiyin/shuiyin.png";
//加载文件
System.Drawing.Image Cover;
Cover = System.Drawing.Image.FromFile(uploadPath + strName + "." + strEnd);
//加载水印文件
Image water = Image.FromFile( context.Request.MapPath(shuiyin));
//创建画布
Graphics g = Graphics.FromImage(Cover);
//在image上绘制水印
g.DrawImage(water, new Rectangle(Cover.Width - water.Width, Cover.Height - water.Height, water.Width, water.Height), 0, 0, water.Width, water.Height, GraphicsUnit.Pixel);
//释放画布
g.Dispose();
//释放水印图片
water.Dispose();
context.Response.ContentType = "images/jpeg";
Cover.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
这些是我在网上找的代码。基本也看懂的。但是我想知道。如何把加上水印的图片保存在某个文件夹下。最后一句save方法是将指定的图像保存在制定的流中。我想保存在某个文件夹里。求大神不吝赐教
蝴蝶不菲
慕姐8265434
相关分类