日期:2014-05-17 浏览次数:21332 次
Graphics g = Graphics.FromImage(pictureBox1.Image);
Pen pen=new Pen(Color.Crimson);
Brush brush=new SolidBrush(Color.Cyan);
Font drawFont = new Font("Arial", 10, FontStyle.Bold, GraphicsUnit.Millimeter);
g.DrawString("求分求鼓励", drawFont, brush, 0, 0);
pictureBox1.Image.Save(@"C:\Users\ll\Desktop\1.jpg");