![]() |
![]() |
![]() |
||||
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. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#1 |
Confirmed User
Join Date: Jul 2004
Location: Detroit Areola
Posts: 4,309
|
WATERMARKING IMAGES inside YOUR Members Section....
Yes / No ?
![]() + and - of doing it- THX- |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#3 | |
Confirmed User
Industry Role:
Join Date: Oct 2003
Location: North Carolina
Posts: 4,257
|
Quote:
of course, as you know most members snag them all and likely share ![]() Ivy |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#4 |
Too lazy to set a custom title
Join Date: Apr 2004
Location: Buffalo, NY
Posts: 35,218
|
You have to these days when somebody can pull your whole site onto their harddrives in minutes
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#5 |
I am a meat popsicle.
Join Date: Jul 2002
Posts: 25,100
|
Only (-) I can imagine would be the time involved?
__________________
HIGHEST PAYOUTS FOR NO-CONSOLE TOURS IN THE ENTIRE INDUSTRY! THIS SIG CAN BE YOURS FOR $200 - ICQ: 78881543 |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#6 | |
Confirmed User
Join Date: Feb 2002
Location: Tampa Bay, FL
Posts: 1,843
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#7 |
Confirmed User
Join Date: May 2002
Location: London
Posts: 568
|
Watermarking...
Here's a great programme for doing batch work and it does everything...
http://www.atalasoft.com/ It's the programme called Eye Batch. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#8 | |
So Fucking Fabulous
Industry Role:
Join Date: Apr 2003
Location: Indiana
Posts: 11,375
|
Quote:
I would never post in public or in members area a image without a watermark.
__________________
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#9 |
Confirmed User
Join Date: May 2003
Location: Australia
Posts: 1,429
|
Allways watermark your images because they end up all over the place and you get typin traffic. You can use image magik to watermark the images already on your server. This way you don't have to ftp them again.
__________________
Webmasters Trade Traffic!!! |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#10 |
Confirmed User
Join Date: May 2003
Location: Australia
Posts: 1,429
|
You can use this code and save it as watermark.cgi or whatever. Place the watermark.jpg in the same folder as the cgi.
#!/usr/bin/perl $position="SouthWest"; # can be NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast $watermark_pic = "watermark.jpg"; $composite = "/usr/bin/composite"; BEGIN { $debug = 0; if ($debug) { print "Content-type: text/plain\n\n"; open (STDERR, ">&STDOUT"); select(STDERR); $| = 1; select(STDOUT); $| = 1; } } $startdir = "$ENV{DOCUMENT_ROOT}"; "/usr/bin:/usr/local/bin" =~ /(.*)/; #untaint path $ENV{'PATH'} = $1; &getinput; print "Content-type: text/html\n\n<html><body>\n\n"; open (STDERR, ">&STDOUT"); $cgi{'dir'} = &canonical_path($cgi{'dir'}); if ($cgi{'submit'} eq "Watermark") { &do_dir("$cgi{'dir'}"); } else { if ($cgi{'dir'} eq "") { &list_dir($startdir); } else { &list_dir("$cgi{'dir'}"); } } print "\n<body>\n</html>\n"; sub getinput() { @pairs= split(/&/,$ENV{'QUERY_STRING'}); foreach $pair (@pairs) { ($name,$value) = split(/=/,$pair); $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg; $cgi{$name} = $value; } } sub do_dir() { $dir = $_[0]; $dir =~ /(.*)/; $dir = $1; print "<pre>reading $dir\n\n"; opendir(DIR, $dir) or die "Could not open dir $dir: $!"; my @files = readdir(DIR); closedir DIR; for $file (@files) { next if ($file =~ m/^\./); $file =~ /(.*)/; #untaint file $file = $1; # print "processing $dir/$file\n"; if (-d "$dir/$file") { &do_dir("$dir/$file"); } else { my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, $atime,$mtime,$ctime,$blksize,$blocks) = stat("$dir/$file"); next if ($size < 20000); # don't watermark thumbnails if ("$dir/$file" =~ m/jpe?g/i) { print "marking $dir/$file\n"; open(TEST, ">$dir/test.txt") or die "Can't open $dir/test.txt: $!"; print TEST "1"; close TEST; system("$composite -compose Bumpmap -watermark 30x30 -gravity $position $watermark_pic $dir/$file $dir/$file"); } } } print "\n\n</pre>\n"; } sub list_dir() { $dir = $_[0]; print qq|Select a directory to watermark:<br> <form action="$ENV{'SCRIPT_NAME'}" method="GET"> <ul> |; opendir(DIR, $dir) or die "Could not open dir $dir: $!"; my @files = readdir(DIR); closedir DIR; for $file (@files) { next if ($file =~ m/^\.$/); if (-d "$dir/$file") { my $path = &canonical_path("$dir/$file"); my $path_enc = &urlencode($path); opendir(DIR, $path); my @jpegs = sort( grep( /jpe?g/i, readdir(DIR) ) ); closedir DIR; if ($#jpegs > 0) { $jpeg_list = "<ul><li>$jpegs[0]</li><li>$jpegs[1]...</li></ul>\n"; } else { $jpeg_list = ""; } print qq|<li> <input type="radio" name="dir" value="$path_enc"> <a href="$ENV{'SCRIPT_NAME'}?dir=$path_enc"> $path </a> $jpeg_list </li>|; } } print qq| </ul> <input type="submit" name="submit" value="Watermark"> </form> |; } sub urlencode{ my($text)=$_[0]; for (0..255) { $escapes{chr($_)} = sprintf("%%haha2X", $_); } ## Regular expression for escaping special chars. $text =~ s/([^;\/?:@&=+\$,A-Za-z0-9\-_.!~*'()])/$escapes{$1}/g; return $text; } sub canonical_path { my $in = $_[0]; my @inparts = split("/", $in); my @outparts; foreach $part (@inparts) { if ($part eq "..") { pop(@outparts); } else { push(@outparts, $part); } } return join("/", @outparts); }
__________________
Webmasters Trade Traffic!!! |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#11 |
Confirmed User
Join Date: Mar 2004
Location: Crazy California
Posts: 926
|
Watermark everything, pics, movies and put your URL clearly on your banners if possible.
There are guys even stealing banners and other types of promo art work and using them to send traffic to different programs. So the answer to your question is a BIG YES. Watermakr all the pics on your members section as well as movies. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#12 |
Viva la vulva!
Join Date: Mar 2003
Location: you can't please everyone, so you got to please yourself
Posts: 16,557
|
This is a cool way to do it
Go down toward the bootom of the page and look for "The Best Thing Since Bubble Wrap". |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#13 | |
So Fucking Banned (YEA!!)
Join Date: Jun 2004
Posts: 10,963
|
Quote:
Im sorry, but werent you the one who "used" content from MP and put in your member's area by the full sets and put up one tiny link back. Sorry if i mistaken you.
__________________
Care about me? Who? Me! Who? |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#14 | |
Confirmed User
Join Date: Nov 2004
Posts: 541
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#15 | |
Confirmed User
Join Date: Oct 2004
Location: Southern California
Posts: 452
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#16 | |
So Fucking Banned (YEA!!)
Join Date: Jun 2004
Posts: 10,963
|
Quote:
I dont know about you. But 150 pics and one text link sure aint going to convert. But now that i know that it was her. PLease carry one with the thread.
__________________
Care about me? Who? Me! Who? |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#17 | |
Confirmed User
Join Date: May 2003
Location: Australia
Posts: 1,429
|
Quote:
__________________
Webmasters Trade Traffic!!! |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#18 |
DINO CORTEZ™
Industry Role:
Join Date: Jun 2003
Location: Vancouver Island
Posts: 2,145
|
I have never watermarked photos in my members areas in the past, but now that most sites do, and with the rampant unauthorised circulation of content, it's time to start.
I think any sponsor who offers promotional content to affiliates should definitely watermark their photos. -Dino |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#19 |
Confirmed User
Join Date: Jul 2003
Location: Vancouverish... ICQ# 111432084
Posts: 1,219
|
We watermark everything. May as well get some type in traffic when they share them with all their freinds
![]() It's an easy batch process in PS, takes 30 seconds. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#20 | |
Confirmed User
Industry Role:
Join Date: Oct 2004
Location: Cancun, Mexico
Posts: 5,883
|
Quote:
Thanks!! ![]() i needed that, the only thing, its asking me for a code to register....i dont have a code yet....i'll crack it ![]()
__________________
Affordable video and picture editing. junior[at]jampackproductions[DOT]com ICQ: 605429331 |
|
![]() |
![]() ![]() ![]() ![]() ![]() |