摘要: ASP.NET(C#)图片加文字、图片水印一、图片上加文字: //using System.Drawing; //using System.IO; //using System.Drawing.Imaging; private void AddTextToImg(string fileName,string text) { if(!File.Exists(MapPath(fileName))) { throw new FileNotFoundException("The file don"t exist!"); } if( ... 阅读全文
posted @ 2012-11-08 16:42 Aaron.Wu 阅读(373) 评论(0) 推荐(0) 编辑