Facebook
From asda, 2 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 193
  1. <?php
  2.  
  3. // Replace with your desired URL
  4. $url = 'nzq4c9clvczxrreawqubzg4qbhh85ytn.oastify.com';
  5.  
  6. // Generate an image with the URL embedded in its Exif data
  7. $image = imagecreate(30, 20); // Create a new image with the desired dimensions
  8. $background_color = imagecolorallocate($image, 20, 20, 20); // Set the background color
  9. imagefilledrectangle($image, 0, 0, 30, 20, $background_color); // Fill the image with the background color
  10.  
  11. // Add the URL to the Exif data
  12. $exif_data = array(
  13.     'UserComment' => $url
  14. );
  15. exif_write_array($exif_data, '.', $image);
  16.  
  17. // Output the image as a JPEG file
  18. header('Content-Type: image/jpeg');
  19. imagejpeg($image);
  20.  
  21. // Clean up
  22. imagedestroy($image);
  23. ?>