How To Add A Watermark To Post Images

Listen Audio
0:00 / 0:00
How to Add a Watermark to Post Images image

Adding a watermark to your post images enhances brand recognition and protects your content from unauthorized use. In this tutorial, we'll create a script to automatically add watermarks when uploading images. We'll use PHP for this task.

Step 1: Setting Up the Environment

Before getting started, ensure you have:

  • A PHP development environment set up.

  • A folder to store uploaded images and a watermark image.

Watermark Image: This should be a transparent .png file.
 

Step 2: Write the Code

Here’s the code snippet for adding a watermark:
 

function CreatePost($request_values) {
    global $conn, $errors;

    // Sanitize input and retrieve user details
    $title = esc($request_values['title']);
    $featured_files = $_FILES['featured_images'];
    $watermarkImagePath = '../assets/post_images/watermarklarge.png';

    foreach ($featured_files['name'] as $key => $file_name) {
        $file_type = pathinfo($file_name, PATHINFO_EXTENSION);
        $target = "../assets/post_images/" . basename($file_name);

        if (move_uploaded_file($featured_files['tmp_name'][$key], $target)) {
            if (in_array($file_type, ['jpg', 'jpeg', 'png', 'gif', 'webp'])) {
                // Load image and watermark
                $watermarkImg = imagecreatefrompng($watermarkImagePath);
                switch ($file_type) {
                    case 'jpg':
                    case 'jpeg':
                        $im = imagecreatefromjpeg($target);
                        break;
                    case 'png':
                        $im = imagecreatefrompng($target);
                        break;
                    case 'gif':
                        $im = imagecreatefromgif($target);
                        break;
                    case 'webp':
                        $im = imagecreatefromwebp($target);
                        break;
                }

                // Position watermark and apply it
                $sx = imagesx($watermarkImg);
                $sy = imagesy($watermarkImg);
                imagecopy($im, $watermarkImg, imagesx($im) - $sx - 20, imagesy($im) - $sy - 20, 0, 0, $sx, $sy);

                // Save the watermarked image
                switch ($file_type) {
                    case 'jpg':
                    case 'jpeg':
                        imagejpeg($im, $target);
                        break;
                    case 'png':
                        imagepng($im, $target);
                        break;
                    case 'gif':
                        imagegif($im, $target);
                        break;
                    case 'webp':
                        imagewebp($im, $target);
                        break;
                }

                // Free memory
                imagedestroy($im);
            }
        }
    }
}

Step 3: How It Works

  1. Upload Handling: The script iterates through each uploaded image.

  2. Watermark Application:

    • Loads the uploaded image and the watermark image.

    • Places the watermark at the bottom-right corner of the uploaded image.

  3. Output: The modified image is saved, replacing the original file.

Step 4: Customize the Watermark Position

The watermark position can be adjusted using margins:
 

imagecopy($im, $watermarkImg, imagesx($im) - $sx - MARGIN_RIGHT, imagesy($im) - $sy - MARGIN_BOTTOM, 0, 0, $sx, $sy);

Step 5: Test the Code

Upload images through your form and check if the watermark is added correctly.



Leave a non public comment how to improve it.



Characters Remaining

We are sorry for your bad experience. Leave a non public comment how to improve it.



Characters Remaining

Related Posts (15)

Adding Advanced Filters, Sorting, and Pagination to Your Blog cover image
Creating a User-Friendly Registration and Login System cover image
How to create a custom archive page template on your website layout cover image
Test the video layout design(Upload and Store video to MySQL Database with PHP) cover image
How to set the expiry period for a reset password link. cover image
Getting User Device Location and Updating Database cover image
Send A verification email when a new user registered  cover image
How to Send Verification link when a new user register cover image
How to limit the number of login attempts  cover image
How to limit the number of login attempt using PHP part 2(PHP functionality) cover image
Download file using PHP cover image
Inactive user enforce to login (SESSION expired) or Limmit the resource cover image
How to count page viewers based on the IP Address of the device cover image
Pagination in PHP cover image
How I Designed the Create Post Section for My Website cover image

Share this on

Search

Archives

No archives data found yet in 2016.

Find Us on Facebook

Subscribe for new updates



Back to Top