Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 01-25-2006, 06:12 PM   #1
Pete-KT
Workin With The Devil
 
Industry Role:
Join Date: Oct 2004
Location: West Bloomfield, MI
Posts: 51,532
watermark pics on the server?

anyone know of a program I can put on the server and have it watermark all my pics without downloading and reuploading my files?
Pete-KT is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 06:14 PM   #2
Chio
Confirmed User
 
Chio's Avatar
 
Join Date: Oct 2002
Location: ICQ: 39-183769
Posts: 8,002
Yes. Gallery 2
__________________

I seo'd my hair yesterday and today it's pr7!
RIP Texas Dreams

Are you a content producer or program owner sick of tube sites? Contact me on ICQ: 39-183769
Chio is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 07:47 PM   #3
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
save the following as .htaccess
this is what the htaccess should look like ( put it in the directory with the pics

Code:
AddHandler watermarked .jpg
AddHandler watermarked .jpeg
AddHandler watermarked .gif
AddHandler watermarked .png

Action watermarked http://www.yoursite.com/watermarkscript.php
then the watermarkscript.php should look like this , it can reside anywhere , just point the htaccess to this file..

make a watermark.png and place it int he same directory as the watermarkscript.php

Code:
<?php
$watermark = "watermark.png";
$image = $_SERVER["PATH_TRANSLATED"];

if (empty($image)) die();

if (!file_exists($image)) {
   header("404 Not Found");
   echo "File Not Found."; die();
}

$outputType = getFileType($image);

watermark($image, $watermark, $outputType);

/**
   Outputs the image $source with $watermark in the lower right corner.
   @param $source the source image
   @param $watermark the watermark to apply
   @param $outputType the type to output as (png, jpg, gif, etc.)
                      defaults to the image type of $source if left blank
*/
function watermark($source, $watermark, $outputType="") {
   $sourceType = getFileType($source);
   $watermarkType = getFileType($watermark);

   if (empty($outputType)) $outputType = $sourceType;
   
   header("Content-type:image/$outputType");

   // Derive function names
   $createSource = "ImageCreateFrom".strtoupper($sourceType);
   $showImage = "Image".strtoupper($outputType);
   $createWatermark = "ImageCreateFrom".strtoupper($watermarkType);

   // Load original and watermark to memory
   $output = $createSource($source);
   $logo = $createWatermark($watermark);
   ImageAlphaBlending($output, true);

   // Find proper coordinates so watermark will be in the lower right corner
   $x = ImageSX($output) - ImageSX($logo);
   $y = ImageSY($output) - ImageSY($logo);

   // Display
   ImageCopy($output, $logo, $x, $y, 0, 0, ImageSX($logo), ImageSY($logo));
   $showImage($output);

   // Purge
   ImageDestroy($output);
   ImageDestroy($logo);
}

function getFileType($string) {
   $type = strtolower(eregi_replace("^(.*)\.","",$string));
   if ($type hahahaha "jpg") $type = "jpeg";
   return $type;
}
( hahaha should read == )
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 07:50 PM   #4
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
make sure you change that 3rd to last line that says "hahaha" to "==" without the quotes
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 07:52 PM   #5
Chio
Confirmed User
 
Chio's Avatar
 
Join Date: Oct 2002
Location: ICQ: 39-183769
Posts: 8,002
Very cool Smokey.
__________________

I seo'd my hair yesterday and today it's pr7!
RIP Texas Dreams

Are you a content producer or program owner sick of tube sites? Contact me on ICQ: 39-183769
Chio is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 07:55 PM   #6
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by Chio
Very cool Smokey.
yah i would like to modify it so you can make it only watermark pics when they are hotlinked or change the watermark to a different larger one , but im unsure of the htaccess
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 07:56 PM   #7
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
hopefully someone will modify it for us.
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 08:00 PM   #8
Chio
Confirmed User
 
Chio's Avatar
 
Join Date: Oct 2002
Location: ICQ: 39-183769
Posts: 8,002
Quote:
Originally Posted by SmokeyTheBear
yah i would like to modify it so you can make it only watermark pics when they are hotlinked or change the watermark to a different larger one , but im unsure of the htaccess

Take a look at gallery 2 watermark code. It does that.

Example:

It should have skarkyfarts logo on the bottom.

Now click the link below and refresh to see the non hotlink version.

http://www.sharkyfarts.com/gallery/v...etski.jpg.html

EDIT: You can set different watermark files as well depending on what's happening... viewed on site, hotlinked, etc.
__________________

I seo'd my hair yesterday and today it's pr7!
RIP Texas Dreams

Are you a content producer or program owner sick of tube sites? Contact me on ICQ: 39-183769

Last edited by Chio; 01-25-2006 at 08:02 PM..
Chio is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 08:01 PM   #9
Grapesoda
So Fucking Banned
 
Industry Role:
Join Date: Jul 2003
Location: Montana
Posts: 46,238
Quote:
Originally Posted by Pete-KT
anyone know of a program I can put on the server and have it watermark all my pics without downloading and reuploading my files?

hit woj up . . . he scripted one for me
Grapesoda is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 08:24 PM   #10
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by Chio
Take a look at gallery 2 watermark code. It does that.

Example:

It should have skarkyfarts logo on the bottom.

Now click the link below and refresh to see the non hotlink version.

http://www.sharkyfarts.com/gallery/v...etski.jpg.html

EDIT: You can set different watermark files as well depending on what's happening... viewed on site, hotlinked, etc.
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 08:31 PM   #11
MikeVega
**Porntrepreneur**
 
MikeVega's Avatar
 
Industry Role:
Join Date: Jul 2004
Location: New York
Posts: 12,788
That's fucking cool ... that's exactly what pete was looking for ...
__________________


Mike Vega-ICQ:253868499-AIM:mikeydicevega
MikeVega is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 08:44 PM   #12
JoeMeca
So Fucking Banned
 
Join Date: Nov 2005
Location: Juicy's House! Icq: 265529404
Posts: 2,266
thanks smoky!
JoeMeca is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-25-2006, 10:01 PM   #13
Pete-KT
Workin With The Devil
 
Industry Role:
Join Date: Oct 2004
Location: West Bloomfield, MI
Posts: 51,532
DAMM SMOKEY YOU ARE THE MAN, I owe you a drink in phoenix bro, thats exactly what i want. Thanks Bro
Pete-KT is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.