Generating Captcha Code in C#

A guide on how to create a Captcha code using C# to protect web forms and applications from automated access. This tutorial demonstrates how to use the `System.Drawing` library to generate Captcha images.

In this article, you will learn how to create a simple Captcha code using the System.Drawing library in C#. The Captcha code will be generated as a random string and displayed as an image.

C# Code

using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;

class CaptchaGenerator
{
    public static void Main(string[] args)
    {
        string captchaCode = GenerateRandomCode(6);
        Console.WriteLine("Captcha code: " + captchaCode);

        using (Bitmap bitmap = new Bitmap(200, 80))
        using (Graphics g = Graphics.FromImage(bitmap))
        {
            // Set background color
            g.Clear(Color.White);
            Font font = new Font("Arial", 30, FontStyle.Bold, GraphicsUnit.Pixel);
            Brush brush = new SolidBrush(Color.Black);

            // Draw the Captcha string
            g.DrawString(captchaCode, font, brush, new PointF(20, 20));

            // Save Captcha image as a file
            bitmap.Save("captcha.png", ImageFormat.Png);
        }

        Console.WriteLine("Captcha image saved as captcha.png");
    }

    // Generate random Captcha code
    private static string GenerateRandomCode(int length)
    {
        const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
        Random random = new Random();
        char[] code = new char[length];

        for (int i = 0; i < length; i++)
        {
            code[i] = chars[random.Next(chars.Length)];
        }

        return new string(code);
    }
}

Detailed explanation:

  1. GenerateRandomCode(int length): Generates a random string consisting of alphanumeric characters of a specified length.
  2. Main():
    • Generates a random Captcha code using GenerateRandomCode.
    • Creates a Bitmap image with dimensions 200x80.
    • Uses the Graphics class to draw the Captcha code on the image.
    • Saves the image as captcha.png.

System Requirements:

  • C# 7.0 or newer
  • .NET Framework 4.5 and above
  • System.Drawing library

How to install the libraries needed to run the C# code above:

For .NET Core projects, you need to install the System.Drawing.Common package using:

dotnet add package System.Drawing.Common

Tips:

  • Add noise and cross lines to the Captcha image to increase security.
  • Use different fonts or rotate characters to make the Captcha harder for bots to read.
Tags: C#, Captcha


Related

Comprehensive guide to concatenating strings in C#

A detailed guide on all the ways to concatenate strings in C#, including the concatenation operator, string methods, and other efficient approaches.
JSON Web Token Authentication with C#

A guide on how to implement JSON Web Token (JWT) authentication in C#. This article will show how to create, sign, and validate JWTs to secure APIs and authenticate users.
Hiding a C# Application from Task Manager

A guide on how to hide a C# application from Task Manager using Win32 API to adjust the application's display properties.
How to Write Data to Excel File in C#

A detailed guide on how to write data to an Excel file in C# using the EPPlus library, making it easy to store and manage data in Excel spreadsheets.
Multithreading in C#

A comprehensive guide on how to implement multithreading in C# to make better use of CPU resources and enhance application performance by executing multiple tasks simultaneously.
How to open Notepad using C#

A guide on how to open the Notepad application using C# via the `Process` class in .NET. This tutorial helps C# developers understand how to interact with external applications using simple code.
How to DELETE data from a MySQL database using C#

A guide on how to use Prepared Statements in C# to delete data from a table in a MySQL database safely and effectively using multiple parameters.
How to SELECT data from a MySQL database using C#

A guide on how to use C# to query data from a MySQL database table using Prepared Statements with multiple parameters for safe and efficient data retrieval.
How to convert Unicode characters with diacritics to non-diacritics in C#

A detailed guide on how to convert Unicode characters with Vietnamese diacritics into non-diacritic characters in C#.
Common Functions Used with Selenium Chrome in C#

This article lists and describes common functions used when working with Selenium Chrome in C#. These functions help automate tasks in the Chrome browser effectively.

main.add_cart_success