日期:2014-05-17 浏览次数:20949 次
Bitmap b = new Bitmap(200, 200); Graphics g = Graphics.FromImage(b); g.Clear(Color.White); g.DrawString("测试", new Font("宋体", 12), new SolidBrush(Color.Red), 5, 5); pictureBox1.Image = b;