日期:2014-05-17 浏览次数:20426 次
string number = "13613373301";
Bitmap bitmap = new Bitmap(200, 40);
// 获取绘制器对象
Graphics g = Graphics.FromImage(bitmap);
// 设置绘制字体
Font font = new Font("Arial Black", 18, FontStyle.Bold
------解决方案--------------------
FontStyle.Italic);
Pen myPen = new Pen(Color.CadetBlue, 2);
// 绘制验证码图像
g.DrawString(number, font, Brushes.Gray, 0, 0);
// 保存验证码图像,等待输出
bitmap.Save(Response.OutputStream, ImageFormat.Gif);