GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Image Watermark Script (https://gfy.com/showthread.php?t=743648)

bonkerz2007 06-17-2007 08:13 PM

Image Watermark Script
 
1. Save your watermark as "watermark.png"
2. Your image links should look like this: http://www.yourdomain.com/watermark.php?src=image.jpg

PHP Code:

<?php  
header
('content-type: image/jpeg');  

$watermark imagecreatefrompng('watermark.png');  
$watermark_width imagesx($watermark);  
$watermark_height imagesy($watermark);  
$image imagecreatetruecolor($watermark_width$watermark_height);  
$image imagecreatefromjpeg($_GET['src']);  
$size getimagesize($_GET['src']);  
$dest_x $size[0] - $watermark_width 5;  
$dest_y $size[1] - $watermark_height 5;  
imagecopymerge($image$watermark$dest_x$dest_y00$watermark_width$watermark_height100);  
imagejpeg($image);  
imagedestroy($image);  
imagedestroy($watermark);  

?>

I know somebody asked for this but i'm too lazy to search :)

martinsc 06-18-2007 12:01 AM

thanks.
i could use it


All times are GMT -7. The time now is 08:41 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123