<?php // Replace with your desired URL $url = 'nzq4c9clvczxrreawqubzg4qbhh85ytn.oastify.com'; // Generate an image with the URL embedded in its Exif data $image = imagecreate(30, 20); // Create a new image with the desired dimensions $background_color = imagecolorallocate($image, 20, 20, 20); // Set the background color imagefilledrectangle($image, 0, 0, 30, 20, $background_color); // Fill the image with the background color // Add the URL to the Exif data $exif_data = array( 'UserComment' => $url ); exif_write_array($exif_data, '.', $image); // Output the image as a JPEG file header('Content-Type: image/jpeg'); imagejpeg($image); // Clean up imagedestroy($image); ?>