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.

In this article, we will explore how to create a watermark for images using C++ through the OpenCV library. You will learn how to use OpenCV functions to overlay text or images onto a base photo.

C++ code

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

using namespace cv;

int main() {
    // Read image
    Mat image = imread("input.jpg");
    if (image.empty()) {
        std::cout << "Cannot open or find the image!" << std::endl;
        return -1;
    }

    // Set watermark text
    std::string watermark = "Watermark";
    int fontFace = FONT_HERSHEY_SIMPLEX;
    double fontScale = 2;
    int thickness = 3;
    Scalar color(255, 255, 255); // White color

    // Calculate position to place the watermark
    int baseline = 0;
    Size textSize = getTextSize(watermark, fontFace, fontScale, thickness, &baseline);
    Point textOrg(image.cols - textSize.width - 10, image.rows - baseline - 10);

    // Add watermark to image
    putText(image, watermark, textOrg, fontFace, fontScale, color, thickness);

    // Save the image with watermark
    imwrite("output.jpg", image);

    // Display the image
    imshow("Image with watermark", image);
    waitKey(0);

    return 0;
}

Detailed explanation

  • #include <opencv2/opencv.hpp>: OpenCV library for image processing.
  • Mat image = imread("input.jpg");: Read an image from the file.
  • if (image.empty()) {...}: Check if the image was successfully opened.
  • std::string watermark = "Watermark";: Set the watermark text.
  • getTextSize(...): Calculate the size of the watermark text for alignment.
  • Point textOrg(...): Calculate the position to place the watermark at the bottom right corner.
  • putText(...): Overlay the watermark text onto the image.
  • imwrite("output.jpg", image);: Save the image with the watermark to a new file.
  • imshow(...): Display the image with the watermark.
  • waitKey(0);: Wait for a key press to close the display window.

System Requirements:

  • C++ version: C++11 or later
  • OpenCV library: Installation of OpenCV is required
  • Compiler: GCC, Clang, MSVC, or any compiler that supports C++11 or later

How to install the libraries:

  1. Download and install OpenCV from the official OpenCV site.
  2. Set up environment variables and configure your compiler to use OpenCV in your project.

Tips:

  • Make sure that the position and size of the watermark are appropriate for the original image. You can adjust parameters to achieve better effects.
Tags: Image, C++


Related

Updating Multiple Columns in MySQL Using C++

A detailed guide on updating multiple columns in MySQL using C++ with Prepared Statements. This article helps you understand how to use Prepared Statements to update data securely and efficiently.
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 POST data to an API using C++ with libcurl

A guide on how to send data to an API using the POST method in C++ with the libcurl library. This article will help you understand how to configure and send HTTP POST requests to a RESTful API.
Create a Thumbnail for Images in C++

A detailed guide on how to create a thumbnail for images in C++ using the OpenCV library. This article will help you understand how to process images and easily resize them to create thumbnails.
How to pass Authentication Header Token when POSTing data to API using Node.js

A step-by-step guide on how to pass an Authentication Token in the header while POSTing data to an API using Node.js. The article demonstrates how to use the `axios` or `http` package to perform authenticated HTTP requests.
Example of Factory Pattern in C++

This article presents the Factory Pattern in C++, a popular design pattern that helps create objects without specifying the exact class of the object. This increases flexibility and extensibility in the codebase.
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.
Multithreading in C++

A detailed guide on handling multithreading in C++ using the `thread` library. This article helps you understand how to use multithreading to improve concurrent processing efficiency.
Create a Simple Chat Application Using Socket.IO in C++

A guide on how to create a simple chat application using C++ with Socket.IO, helping you to understand more about network programming and real-time communication.

main.add_cart_success