4WebHelp
 FAQ  •  Search  •  User Groups  •  Forum Admins  •  Smilies List  •  Statistics  •  Rules   •  Login   •  Register
Toggle Navigation Menu

 Protecting Images
Post New TopicReply to Topic
View Previous Topic Print this topic View Next Topic
Author Message
GXEman
Junior WebHelper
Junior WebHelper


Joined: 07 May 2003
Posts: 27
Location: Athens, GA

PostPosted: Thu Aug 28, 2003 12:45 am (20 years, 7 months ago) Reply with QuoteBack to Top

What are some ways of protecting images online. A friend wanted some advice on her website. Someone told her:

Code:
I would also drop the watermark from the images. Web images are low-res enough that no one is really going to be able to do anything with them if they copy them. And watermarks are pretty easily removed, so folks can "steal" them if they want anyway.


Here are some examples of the watermarks he was talking about
http://www.margocandelario.com/art/2.jpg
http://www.margocandelario.com/art/221.jpg
http://www.margocandelario.com/art/440.jpg

She is worried about someone possibly stealing her art. Any advice or comments?

________________________________
Freshfemi.net
Too Cool For a Dot Com
OfflineView User's ProfileFind all posts by GXEmanSend Personal Message
Darren
Team Member



Joined: 05 Feb 2002
Posts: 549
Location: London

PostPosted: Thu Aug 28, 2003 7:56 am (20 years, 7 months ago) Reply with QuoteBack to Top

Photoshop has a demo of a filter which embeds copyright information into an image.
http://www.digimarc.com/products/imagebridge/default.asp

I don't know anything more about it though....
OfflineView User's ProfileFind all posts by DarrenSend Personal MessageVisit Poster's Website
Daniel
Team Member



Joined: 06 Jan 2002
Posts: 2564

PostPosted: Thu Aug 28, 2003 7:57 am (20 years, 7 months ago) Reply with QuoteBack to Top

There are no real methods of protecting images, unfortunately. However watermarking is a sure way to turn people off stealing your images Very Happy. I think your friend is reasonable in watermarking her work, since that's some pretty good artwork. If she doesn't mind the watermarking, then I think she should stick with it. As to removing the watermark, I don't think it's possible without destroying/damaging part of the image...

________________________________
Image
OfflineView User's ProfileFind all posts by DanielSend Personal Message
Darren
Team Member



Joined: 05 Feb 2002
Posts: 549
Location: London

PostPosted: Thu Aug 28, 2003 8:29 am (20 years, 7 months ago) Reply with QuoteBack to Top

Daniel wrote:
As to removing the watermark, I don't think it's possible without destroying/damaging part of the image...


I'd beg to differ - 15 mins in Photoshop and that would be gone without trace
OfflineView User's ProfileFind all posts by DarrenSend Personal MessageVisit Poster's Website
Daniel
Team Member



Joined: 06 Jan 2002
Posts: 2564

PostPosted: Thu Aug 28, 2003 10:04 am (20 years, 7 months ago) Reply with QuoteBack to Top

Ah well then, guess I'm too much of a beginner at graphics Very Happy

Bigger a problem than I thought then... Crying or Very sad

________________________________
Image
OfflineView User's ProfileFind all posts by DanielSend Personal Message
GXEman
Junior WebHelper
Junior WebHelper


Joined: 07 May 2003
Posts: 27
Location: Athens, GA

PostPosted: Thu Aug 28, 2003 1:08 pm (20 years, 7 months ago) Reply with QuoteBack to Top

I'll look into photoshop's digimarcs. Thanks for the suggestions so far guys.

________________________________
Freshfemi.net
Too Cool For a Dot Com
OfflineView User's ProfileFind all posts by GXEmanSend Personal Message
phryxus
Junior WebHelper
Junior WebHelper


Joined: 16 Nov 2003
Posts: 46

PostPosted: Wed Jan 07, 2004 3:14 pm (20 years, 3 months ago) Reply with QuoteBack to Top

Maybe it's very late to post a reply but there is a script that will help you to protect your images!! I can't find any way to copy a image if I have used this script. The ownly problem is that this script will block your right mouse click totally. Confused

Code:

<SCRIPT language="JavaScript1.1">
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Your alert here!!");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
//  End -->
</SCRIPT>
OfflineView User's ProfileFind all posts by phryxusSend Personal Message
Daniel
Team Member



Joined: 06 Jan 2002
Posts: 2564

PostPosted: Wed Jan 07, 2004 5:19 pm (20 years, 3 months ago) Reply with QuoteBack to Top

Any Javascript can be bypassed: simply turn off Javascript in your browser Wink

________________________________
Image
OfflineView User's ProfileFind all posts by DanielSend Personal Message
thetribe
WebHelper
WebHelper


Joined: 10 Nov 2002
Posts: 62
Location: Ashington, Northumberland. UK

PostPosted: Wed Jan 07, 2004 5:27 pm (20 years, 3 months ago) Reply with QuoteBack to Top

my keyboard also has a right-click menu button, left click the images and hit the menu button and the right-click menu opens, then do what's needed Smile

________________________________
Phil.
My Musical Preferences
Image
OfflineView User's ProfileFind all posts by thetribeSend Personal MessageVisit Poster's Website
Darren
Team Member



Joined: 05 Feb 2002
Posts: 549
Location: London

PostPosted: Wed Jan 07, 2004 5:48 pm (20 years, 3 months ago) Reply with QuoteBack to Top

or just take screen shots! Wink
OfflineView User's ProfileFind all posts by DarrenSend Personal MessageVisit Poster's Website
phryxus
Junior WebHelper
Junior WebHelper


Joined: 16 Nov 2003
Posts: 46

PostPosted: Wed Jan 07, 2004 6:59 pm (20 years, 3 months ago) Reply with QuoteBack to Top

ok here a script to block the keyboard:

Code:

<script language="JavaScript">

<!--
function keypressed ()  { alert ("© Copyright 2003, Leejoos Webhebbies");}

document.onkeydown=keypressed;
-->

</script>
OfflineView User's ProfileFind all posts by phryxusSend Personal Message
Daniel
Team Member



Joined: 06 Jan 2002
Posts: 2564

PostPosted: Wed Jan 07, 2004 7:22 pm (20 years, 3 months ago) Reply with QuoteBack to Top

Boy, that would drive me crazy! Very Happy

________________________________
Image
OfflineView User's ProfileFind all posts by DanielSend Personal Message
phryxus
Junior WebHelper
Junior WebHelper


Joined: 16 Nov 2003
Posts: 46

PostPosted: Wed Jan 07, 2004 8:29 pm (20 years, 3 months ago) Reply with QuoteBack to Top

Yes that's right, maybe there is a way to block it without that damn alert. That would make a lot of things better. Wink
OfflineView User's ProfileFind all posts by phryxusSend Personal Message
thor
WebHelper
WebHelper


Joined: 10 Mar 2003
Posts: 71

PostPosted: Wed Jan 07, 2004 8:50 pm (20 years, 3 months ago) Reply with QuoteBack to Top

Even with that its still possible to save the images its not hard at all so you should probably protect them another way.
OfflineView User's ProfileFind all posts by thorSend Personal Message
phryxus
Junior WebHelper
Junior WebHelper


Joined: 16 Nov 2003
Posts: 46

PostPosted: Thu Jan 08, 2004 4:46 pm (20 years, 3 months ago) Reply with QuoteBack to Top

Then I think it is impossible to protect your images at this moment. Crying or Very sad
OfflineView User's ProfileFind all posts by phryxusSend Personal Message
Display posts from previous:      
Post New TopicReply to Topic
View Previous Topic Print this topic View Next Topic


 Jump to:   


Go to page 1, 2, 3  Next

You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot edit your posts in this forum.
You cannot delete your posts in this forum.
You cannot vote in polls in this forum.


Page generation time: 0.301745 seconds :: 18 queries executed :: All Times are GMT
Powered by phpBB 2.0 © 2001, 2002 phpBB Group :: Based on an FI Theme