欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#截取验证码图片

程序员文章站 2022-03-23 19:13:31
使用Graphics类中的DrawImage方法,这个方法有30种重载方式,这里只介绍一种,也是我认为最直观的一种,代码如下: 1 using System.Drawing; 2 3 namespace kq.Utils 4 { 5 public static class CommonTools 6 ......

使用graphics类中的drawimage方法,这个方法有30种重载方式,这里只介绍一种,也是我认为最直观的一种,代码如下:

C#截取验证码图片
 1 using system.drawing;
 2 
 3 namespace kq.utils
 4 {
 5     public static class commontools
 6     {
 7 
 8         public static bitmap getverifycode(bitmap srcbmp, rectangle rectangle)
 9         {
10             //初始化一个bmp对象,90代表图片的宽度,37代表高度
11             bitmap bmp = new bitmap(90, 37);
12             graphics g = graphics.fromimage(bmp);
13             g.drawimage(srcbmp, 0, 0, rectangle, graphicsunit.pixel);
14             return bmp;
15         }
16     }
17 }
view code

其中g.drawimage方法中第一个参数代表被截取的原图,第二第三个参数(0,0)代表在bmp中画的起点xy坐标,第四个参数rectangle代表从srcbmp中截取的区域,最后一个参数graphicsunit.pixel表示以上代表距离以及区域的参数的单位,pixel代表像素。

以下是使用方式:

C#截取验证码图片
 1 using kq.utils;
 2 using openqa.selenium;
 3 using openqa.selenium.chrome;
 4 using system.drawing;
 5 
 6 namespace kq
 7 {
 8     class program
 9     {
10         static void main(string[] args)
11         {
12             try
13             {
14                 string screenimg = @"d:\screenimg.png";
15 
16                 bitmap frombmp = new bitmap(screenimg);
17                 rectangle section1 = new rectangle(936, 523, 90, 37);
18 
19                 bitmap bmp = commontools.getverifycode(frombmp, section1);
20 
21                 bmp.save(@"d:\验证码.bmp");
22             }
23             catch (system.exception e)
24             {
25                 system.console.writeline(e.message);
26             }
27 
28         }
29     }
30 }
view code

假设我们要截取一张图片中的验证码部分,代码中的(936,523)代表原图中验证码左上角的坐标,(90,37)分别表示验证码的长和高,以上单位都是像素,如下图:

C#截取验证码图片

最后截取出来的结果如下图:

C#截取验证码图片