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 Mark Forums Read
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-03-2005, 07:57 PM   #1
ProjectNaked
Confirmed User
 
ProjectNaked's Avatar
 
Join Date: Jul 2004
Location: Detroit Areola
Posts: 4,309
WATERMARKING IMAGES inside YOUR Members Section....

Yes / No ?

+ and - of doing it-

THX-
ProjectNaked is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 07:58 PM   #2
candyflip
Carpe Visio
 
candyflip's Avatar
 
Industry Role:
Join Date: Jul 2002
Location: New York
Posts: 43,064
I watermark all images, members section or not. They always end up elsewhere.
__________________

Spend you some brain.
Email Me
candyflip is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 08:01 PM   #3
PrivateIvy
Confirmed User
 
Industry Role:
Join Date: Oct 2003
Location: North Carolina
Posts: 4,257
Quote:
Originally Posted by ProjectNaked
Yes / No ?

+ and - of doing it-

THX-

of course, as you know most members snag them all and likely share


Ivy
PrivateIvy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 08:02 PM   #4
xclusive
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
__________________

I support MediumPimpin.com / Shemp's Outlawtgp.com /


xclusive is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 08:03 PM   #5
sickkittens
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
sickkittens is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 08:18 PM   #6
NaughtyAlysha
Confirmed User
 
NaughtyAlysha's Avatar
 
Join Date: Feb 2002
Location: Tampa Bay, FL
Posts: 1,843
Quote:
Originally Posted by sickkittens
Only (-) I can imagine would be the time involved?
There are plenty of programs that can do it in seconds. I would never leave my pictures unwatermarked so they can be stolen and posted elsewhere.
__________________


ExtremeBank.com, the EXTREME program for NaughtyAlysha.com.
NaughtyAlysha is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 08:18 PM   #7
JoeA
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.
JoeA is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 08:46 PM   #8
SBJ
So Fucking Fabulous
 
SBJ's Avatar
 
Industry Role:
Join Date: Apr 2003
Location: Indiana
Posts: 11,375
Quote:
Originally Posted by JoeA
Here's a great programme for doing batch work and it does everything...

http://www.atalasoft.com/ It's the programme called Eye Batch.
Looks like a cool program.. I use Arles 5.2.8 or whatever the newest version is and it does a amazing job.

I would never post in public or in members area a image without a watermark.
SBJ is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 08:54 PM   #9
Kevin2
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!!!
Kevin2 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 09:02 PM   #10
Kevin2
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!!!
Kevin2 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 09:44 PM   #11
H.I.G
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.
H.I.G is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 09:48 PM   #12
mikeyddddd
Viva la vulva!
 
mikeyddddd's Avatar
 
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".
mikeyddddd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 10:08 PM   #13
Alex
So Fucking Banned (YEA!!)
 
Join Date: Jun 2004
Posts: 10,963
Quote:
Originally Posted by PrivateIvy
of course, as you know most members snag them all and likely share


Ivy

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?
Alex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 10:38 PM   #14
BackToMine
Confirmed User
 
Join Date: Nov 2004
Posts: 541
Quote:
Originally Posted by kaliboy2g
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.
friends section, upsell, affiliate, shut your mouth.
BackToMine is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 10:43 PM   #15
Workshop_Willy
Confirmed User
 
Join Date: Oct 2004
Location: Southern California
Posts: 452
Quote:
Originally Posted by Kevin2
You can use this code and save it as watermark.cgi or whatever. Place the watermark.jpg in the same folder as the cgi.

. . .
Nice, Kevin! Did you write this?
Workshop_Willy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 10:46 PM   #16
Alex
So Fucking Banned (YEA!!)
 
Join Date: Jun 2004
Posts: 10,963
Quote:
Originally Posted by BackToMine
friends section, upsell, affiliate, shut your mouth.

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?
Alex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-03-2005, 11:38 PM   #17
Kevin2
Confirmed User
 
Join Date: May 2003
Location: Australia
Posts: 1,429
Quote:
Originally Posted by Workshop_Willy
Nice, Kevin! Did you write this?
LOL no my programmer did. I'm too dumb ;)
__________________

Webmasters Trade Traffic!!!
Kevin2 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-04-2005, 01:19 AM   #18
dcortez
DINO CORTEZ™
 
dcortez's Avatar
 
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
dcortez is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-04-2005, 01:31 AM   #19
Kassidy
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.
__________________


The ORIGINAL micro niche program- All Original and exclusive content.
Paying 60% recurring through CCBill, FHG, free content & gallery templates
Well researched niches with on-target content. SUBSTANCE SELLS!
Kassidy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-04-2005, 01:35 AM   #20
L0rdJuni0r
Confirmed User
 
Industry Role:
Join Date: Oct 2004
Location: Cancun, Mexico
Posts: 5,883
Quote:
Originally Posted by JoeA
Here's a great programme for doing batch work and it does everything...

http://www.atalasoft.com/ It's the programme called Eye Batch.

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
L0rdJuni0r 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
Thread Tools



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.