国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > .NET > 正文

在Asp.net中為圖像加入水印信息并保存為Jpg類型

2024-07-10 12:43:07
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
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( text == string.Empty ){return;}//還需要判斷文件類型是否為圖像類型,這里就不贅述了System.Drawing.Image image = System.Drawing.Image.FromFile(MapPath(fileName));Bitmap bitmap = new Bitmap(image,image.Width,image.Height);Graphics g = Graphics.FromImage(bitmap);float fontSize = 12.0f; //字體大小float textWidth = text.Length*fontSize; //文本的長(zhǎng)度//下面定義一個(gè)矩形區(qū)域,以后在這個(gè)矩形里畫上白底黑字float rectX = 0; float rectY = 0;float rectWidth = text.Length*(fontSize+8);float rectHeight = fontSize+8;//聲明矩形域RectangleF textArea = new RectangleF(rectX,rectY,rectWidth,rectHeight);Font font = new Font("宋體",fontSize); //定義字體Brush whiteBrush = new SolidBrush(Color.White); //白筆刷,畫文字用Brush blackBrush = new SolidBrush(Color.Black); //黑筆刷,畫背景用g.FillRectangle(blackBrush,rectX,rectY,rectWidth,rectHeight); g.DrawString(text,font,whiteBrush,textArea);MemoryStream ms = new MemoryStream( );//保存為Jpg類型bitmap.Save(ms,ImageFormat.Jpeg);//輸出處理后的圖像,這里為了演示方便,我將圖片顯示在頁(yè)面中了Response.Clear();Response.ContentType = "image/jpeg";Response.BinaryWrite( ms.ToArray() );g.Dispose();bitmap.Dispose();image.Dispose();}

調(diào)用時(shí)很簡(jiǎn)單,

AddTextToImg("me.jpg","程序人生http://www.manong123.com/");

一切OK了,感覺.net確實(shí)好強(qiáng)大,這些功能在Asp中可是奢侈品了,而在.Net環(huán)境中卻能輕而易舉的完成!

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 兴安盟| 正定县| 靖江市| 调兵山市| 娱乐| 台前县| 巍山| 德保县| 金华市| 南木林县| 安图县| 城口县| 安塞县| 丹寨县| 松潘县| 江津市| 桂林市| 桑植县| 双桥区| 山东省| 渭南市| 赤水市| 富阳市| 惠东县| 萝北县| 夏河县| 怀柔区| 五华县| 仪陇县| 龙胜| 海城市| 巴塘县| 郓城县| 盈江县| 红河县| 淅川县| 博乐市| 石城县| 永胜县| 乌苏市| 金坛市|