using (System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(fullpath))
{
using (System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bitmap)) //注意此处FromImage是方法,不能用new
{
g.DrawString("免费用户试用", new System.Drawing.Font("宋体", 40), System.Drawing.Brushes.Red, 0,0); //最后两个参数 是绝对坐标,相对于整个界面的,所以太大的话,会看不到文字在fullpath上的效果
}
bitmap.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
}