asp.net 5.图片和验证码
1.基本画图
//给用户创建一张图片,并且保持一张图片。 //创建一个画布 using (Bitmap map = new Bitmap(300, 400)) { //绘画布创建一个画笔 using (Graphics g = Graphics.FromImage(map)) { g.Clear(Color.Gray);//清除整个绘画面,以指定背景颜色填充 //再画布上写字。 //1:写的是什么字 //2:字体的样式,字体大小等。 //3:用什么颜色填充字体 //4:在画布的什么位置写字 g.DrawString("传智播客", new Font("黑体", 14.0f, FontStyle.Bold), Brushes.Red, new PointF(150, 200)); //将画布保存成一张图片. string fileName = Guid.NewGuid().ToString(); //将画布保存成一张图片,并且指定图片的类型 map.Save(context.Request.MapPath("/ImageUpload/" + fileName + ".jpg"), System.Drawing.Imaging.ImageFormat.Jpeg); context.Response.Write("<html><body><img src='/ImageUpload/" + fileName + ".jpg'/></body></html>"); } }
You are never too old to set another goal or to dream a new dream!!!