Protect Photos on web from copying

Status
Not open for further replies.

vijaythefool

In the zone
Is thre any script to disable print screen button and prevent the the image being added to the temp folders ? so that the mage can be protected ?

any function on keydown , key press... etc ?
any way image can be protected frmo right click, save as etc but the above mentioned ? :(
 

divyaansha

Broken In
dude

why don't you try to find one on

*www.planetsourcecode.com

I had it but lost the cd

just register for free login and download unlimited codes

bye

:D :D :) :) :D :) 8)
 

rohan

In the zone
Theres Nothing you can do

All images are first downloaded to the cache and then shown, hence you cannot do anything to prevent this stuff. Well however you can surely disabel right click onh your site which will prevent users from right clicking any image.

There are many codes here. Try all and see which works on all browsers:

<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit *www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>

This works on Netscape 6. It will silently disable the right click menu without any alert:

<script language=JavaScript>
<!--

//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit *www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>

This one will disable only the image toolbar in IE 6.0:

In the <head> section put the following code:

<META HTTP-EQUIV="imagetoolbar" CONTENT="no">

Or for any image put the following code:


ThanX, Rohan Ultra
 
OP
V

vijaythefool

In the zone
Talking abt right click .... still any one can get the image out of ur page....
think....

Artist scope is useless buddy . just go through the applets and ull get the image without an extension just rename it with a . jpeg extension . u get the image. :(

on win xp :
when a image with no right click is loaded just wait for the image load and see an option can be seen on the top left corner to save :(

To over Come this just use another layer of a transparent gif image using <div> on ie5 and <layer> on others browsers. when the save option appers over the image the blank gif imagew ill be saved which is layered above the protected image.......


But when print screen button is used the image can be captured !

in no ways mage can be saved perfectly ! :lol:
 
Status
Not open for further replies.
Top Bottom