问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

C#用Grapic产生验证码图片

发布网友 发布时间:2022-04-22 03:48

我来回答

2个回答

热心网友 时间:2023-12-02 10:29

以下是我写的一个WinForm控件.验证码的.你看看就知道了.其实字符串变图片就是这样的

public partial class CodeControl : UserControl
{
private string _code = "";
public string Code {
get { return this._code; }
}

public CodeControl()
{
InitializeComponent();
}

public void CreateCodeImage() {
string[] str = new string[4];
string serverCode = "";
//生成随机生成器
Random random = new Random();
_code = "";
for (int i = 0; i < 4; i++)
{
str[i] = random.Next(10).ToString().Substring(0, 1);
_code += str[i];
}

CreateCodeImage(str);
}

private void CreateCodeImage(string[] checkCode)
{
if (checkCode == null || checkCode.Length <= 0)
return;

//System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * 32.5)), this.CodePictureBox.Height);
System.Drawing.Bitmap image = new System.Drawing.Bitmap(this.CodePictureBox.Width, this.CodePictureBox.Height);
System.Drawing.Graphics g = Graphics.FromImage(image);

try
{
Random random = new Random();
//清空图片背景色
g.Clear(Color.White);

//画图片的背景噪音线
for (int i = 0; i < 20; i++)
{
int x1 = random.Next(image.Width);
int x2 = random.Next(image.Width);
int y1 = random.Next(image.Height);
int y2 = random.Next(image.Height);

g.DrawLine(new Pen(Color.Silver), x1, y1, x2, y2);
}

//定义颜色
Color[] c = { Color.Black, Color.Red, Color.DarkBlue, Color.Green, Color.Orange, Color.Brown, Color.DarkCyan, Color.Purple };
//定义字体
string[] f = { "Verdana", "Microsoft Sans Serif", "Comic Sans MS", "Arial", "宋体" };

for (int k = 0; k <= checkCode.Length - 1; k++)
{
int cindex = random.Next(7);
int findex = random.Next(5);

Font drawFont = new Font(f[findex], 16, (System.Drawing.FontStyle.Bold));
SolidBrush drawBrush = new SolidBrush(c[cindex]);

float x = 3.0F;
float y = 0.0F;
float width = 20.0F;
float height = 25.0F;
int sjx = random.Next(10);
int sjy = random.Next(image.Height - (int)height);

RectangleF drawRect = new RectangleF(x + sjx + (k * 14), y + sjy, width, height);

StringFormat drawFormat = new StringFormat();
drawFormat.Alignment = StringAlignment.Center;

g.DrawString(checkCode[k], drawFont, drawBrush, drawRect, drawFormat);
}

//画图片的前景噪音点
for (int i = 0; i < 100; i++)
{
int x = random.Next(image.Width);
int y = random.Next(image.Height);

image.SetPixel(x, y, Color.FromArgb(random.Next()));
}

//画图片的边框线
g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);

System.IO.MemoryStream ms = new System.IO.MemoryStream();
image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
this.CodePictureBox.Image = Image.FromStream(ms);
}
finally
{
g.Dispose();
image.Dispose();
}
}
}

热心网友 时间:2023-12-02 10:30

C# graphics方法

C# graphics方法
命名空间:System.Drawing
程序集:System.Drawing(在 system.drawing.dll 中)
封装一个 GDI+ 绘图图面。无法继承此类。
C# 用法
public sealed class Graphics : MarshalByRefObject, IDeviceContext, IDisposable

System.Drawing.Pen myPen = new System.Drawing.Pen(System.Drawing.Color.Red);//画笔 System.Drawing.SolidBrush myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Red);//画刷 System.Drawing.Graphics formGraphics = this.CreateGraphics();
formGraphics.FillEllipse(myBrush, new Rectangle(0,0,100,200));//画实心椭圆
formGraphics.DrawEllipse(myPen, new Rectangle(0,0,100,200));//空心圆
formGraphics.FillRectangle(myBrush, new Rectangle(0,0,100,200));//画实心方
formGraphics.DrawRectangle(myPen, new Rectangle(0,0,100,200));//空心矩形
formGraphics.DrawLine(myPen, 0, 0, 200, 200);//画线
formGraphics.DrawPie(myPen,90,80,140,40,120,100); //画馅饼图形 //画多边形
formGraphics.DrawPolygon(myPen,new Point[]{ new Point(30,140), new Point(270,250), new Point(110,240), new Point (200,170), new Point(70,350), new Point(50,200)}); //清理使用的资源 myPen.Dispose(); myBrush.Dispose(); formGraphics.Dispose();
使用Graphics对象绘制线条和形状、呈现文本或显示与操作图像,所用到的属性和方法如表所示。
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
...的话有啥影响,怎么听说对六年后换证有影响? ...重新刷学时吗,科一科二科三科四可以转校吗? 考完科一科二科三科四要多久 ...但是科目三的学时没有打满对以后有没有影响? 我的学时卡没有打过,一点都没有,不过我科一科二科三科四都全部考完了... 五行穿搭2021年10月8日五行属什么怎么穿衣 十月八日上到十月几日 ipadmini和iphone6是充电器不一样、还是数据线不一样呢?可以互相使用充 ... iphone6的插头可以通用ipad mini 吗 iphone6和ipad mini的充电器可以通用吗 企业形象广告定位的种类有哪些? 怎样把excel里的数据怎样批量通过网页查询再导入到... yes there are 和yes they are 弘信电子厂做了七天 辞职班长不签离职单怎么办? Yes,there are.的中文 怎样用Excel 2010导入外部网页表格数据 英语中可不可以用Yes,there are ,如果不可以是不... 企业广告宣传媒介有哪些 如何批量将excel数据导入网页 企业宣传媒介有哪些?? 弘信创业工场的创业工场-要素经营 企业的宣传途径有哪些 弘信电子做成品车间是干什么的 企业品牌宣传有哪些渠道?怎么做好品牌宣传? 弘信电子的FQC岗位是做什么 厦门弘信电子详细地址 Excel导入网页内表格,自网站导入打不开怎么办? 厦门弘信电子厂怎么样? 企业宣传媒介有哪些? 湖北弘信柔性电子科技有限公司怎么样? yes,they are. 与yes,there are.的区别 用C#编写网页怎么生成验证码 三者险买100万到底够不够?出险赔付标准告诉你,结... excel表格里怎么使用自动导入网页数据 yes there are 和yes they are 有什么区别呢 企业宣传片制作有哪些风格、类型? 如何用C#制作验证码 车出了事故,这边次责 对方主要责任可能植物人,有... 这句话Yes, there are some reluctant 什么意思? 我们公司想做一个宣传片,有什么推荐的吗? 100万真的够赔吗 三者险买多少最合适 are there的肯定回答和否定回答是什么? ASP.NET验证码制作 适合新公司品牌宣传的形式有哪些? 在Excel中导入网页中的表格无法显示网页为什么 python 验证码加时间戳的功能是怎么实现的 四线城市一百万保险够赔么 Is there hotelnear here?Yes,there are.什么意思 企业宣传片有哪几种类型可以制作? 汽车三者险有必要买100万吗?保险员:不要白白浪费钱