标签:font 图片 from bsp int 运用 str raw ima
Image mia = Image.FromFile(path);
//创建位图
Graphics g = Graphics.FromImage(mia);
//赋值水印文字
string sy = name;
//图片格式
Font ft = new Font("宋体", 32);
//创建画笔
SolidBrush sol = new SolidBrush(Color.FromArgb(200, 200, 0, 0));
//运用位图画出水印
g.DrawString(sy, ft, sol, new PointF(mia.Width / 5,mia.Height/2-0));
//保存
mia.Save(@"E:\高四\日考\Enheng\Enheng\haha\aheng.jpg");
string tt = ("aheng.jpg");
标签:font 图片 from bsp int 运用 str raw ima
原文地址:http://www.cnblogs.com/w-pengchao/p/7840503.html