image protect

D

Dvon

Is there a way I can prevent someone from copying a jpg or gif file from my
website? I'm using FP2002. Thanks
 
D

Drebbel

Dvon said:
Is there a way I can prevent someone from copying a jpg or gif file
from my website? I'm using FP2002. Thanks

That is NOT possible. Even just watching an image means the visitors
computer has to download it.

Ofcourse you can do things like blokking right-click option. But that is
just fooling yoourself ;-)

--
Drebbel

Dutch Submarines: The Submarine of the Royal Netherlands Navy 1906-2003
http://www.dutchsubmarines.com
NEW FORUM
http://www.dutchsubmarines.com/phpbb2/
 
T

The Enforcement Team

just add the lower 2 the header and it will work 4 u , everything below the
line. But ppl can still steal in view source

<script language="JavaScript">

<!--
// No rightclick script v.2.5
// (c) 1998 Blah Blah Blah
// Blah Blah
// Change this

var message="Sorry, This site is protected by copy rite "no right clicks
here"";

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->

</script>
 
D

Drebbel

The said:
just add the lower 2 the header and it will work 4 u , everything
below the line. But ppl can still steal in view source

<script language="JavaScript">

<!--
// No rightclick script v.2.5
// (c) 1998 Blah Blah Blah
// Blah Blah
// Change this

var message="Sorry, This site is protected by copy rite "no right
clicks here"";

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->

</script>

Some ways to get an image without right click

- Just do right-click and enter at the same time

or

- check the source code , locate the url of the image, surf to that url

or

- Check browser cache

or

- use screencapture

or

etcetera etcetera

- D -
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top