Generate Captcha Using C++

A guide on how to create a Captcha using C++ with graphics libraries to generate random text and images, providing protection against automated attacks for web applications or software.

In this article, we will explore how to create a simple Captcha using C++. The process involves generating a random string, adding noise, and displaying it on an image.

C++ Code

#include <iostream>
#include <cstdlib>
#include <ctime>
#include <opencv2/opencv.hpp>

std::string generateCaptcha(int length) {
    std::string captcha;
    const char charset[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
    int maxIndex = sizeof(charset) - 1;

    for (int i = 0; i < length; ++i) {
        captcha += charset[rand() % maxIndex];
    }

    return captcha;
}

void createCaptchaImage(const std::string& captcha) {
    int width = 200;
    int height = 80;
    cv::Mat image(height, width, CV_8UC3, cv::Scalar(255, 255, 255));

    // Set font and draw text
    int fontFace = cv::FONT_HERSHEY_SIMPLEX;
    double fontScale = 1;
    int thickness = 2;
    cv::Point textOrg(10, 50);

    cv::putText(image, captcha, textOrg, fontFace, fontScale, cv::Scalar(0, 0, 0), thickness);

    // Add noise
    for (int i = 0; i < 1000; ++i) {
        int x = rand() % width;
        int y = rand() % height;
        image.at<cv::Vec3b>(y, x) = cv::Vec3b(rand() % 256, rand() % 256, rand() % 256);
    }

    cv::imwrite("captcha.png", image);
    std::cout << "Captcha image saved as captcha.png" << std::endl;
}

int main() {
    srand(time(0));
    std::string captcha = generateCaptcha(6);
    std::cout << "Generated Captcha: " << captcha << std::endl;
    createCaptchaImage(captcha);
    return 0;
}

Detailed explanation:

  1. generateCaptcha(): Generates a random Captcha string from alphanumeric characters.
  2. createCaptchaImage(): Creates a Captcha image using OpenCV, adding the Captcha text and noise.
  3. main(): Calls generateCaptcha to create the Captcha string and createCaptchaImage to generate the corresponding image.

System Requirements:

  • C++ Compiler (GCC, MSVC, ...)
  • OpenCV library version 4.0 or above

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

  1. Install OpenCV: OpenCV Installation Guide
  2. Compile with OpenCV:
    g++ -o captcha captcha.cpp `pkg-config --cflags --libs opencv4`
    

Tips:

  • Choose harder-to-guess characters and colors for better security.
  • Add more noise and text distortion to increase difficulty in recognition.
Tags: C++, Captcha


Related

Common Functions When Using Selenium Chrome in C++

This article lists the common functions used when working with Selenium Chrome in C++, helping readers quickly grasp the necessary operations for browser automation.
Reading Excel File Content in C++

A detailed guide on reading the content of an Excel file in C++ using the `xlnt` library. This article will help you understand how to retrieve data from an Excel file and process it in your C++ program.
All Methods for String Concatenation in C++

This article compiles all methods for string concatenation in C++, helping you understand the different methods from basic to advanced, including using the `+` operator, the `append()` function, and methods from the `string` library.
How to automatically log into a website using Selenium with Chrome in C++

A guide on using Selenium with ChromeDriver in C++ to automatically log into a website. The article explains how to set up Selenium and ChromeDriver and the steps to log in to a specific website.
How to Write Data to an Excel File Using C++

A detailed guide on writing data to an Excel file using C++ and the openxlsx library. This article provides the necessary steps to create and write data to an Excel file easily.
Create a watermark for images using C++

A guide on how to create a watermark for images in C++ using the OpenCV library. This article helps you understand how to add text or images onto a photo to create a watermark.
How to open Notepad using C++

A guide on how to open the Notepad application using C++ on Windows by utilizing the `system()` function. This is a simple method to invoke system applications from a C++ program.
Example of Object-Oriented Programming (OOP) in C++

This article provides an illustrative example of object-oriented programming (OOP) in C++, covering concepts such as classes, objects, inheritance, and polymorphism.
Example of Singleton Pattern in C++

This article introduces the Singleton Pattern in C++, including its implementation and application in object management. The Singleton Pattern ensures that a class has only one instance and provides a global access point to it.
Convert Markdown to HTML in C++

A detailed guide on how to convert Markdown strings to HTML using C++. This article will help you grasp how to use a Markdown library to perform the conversion easily and efficiently.

main.add_cart_success