0

I want to create a website, From there no one can steal my photos by screenshot or any kind of download method. if they try to screenshot the particular image also they unable to save any photo format. Is that possible?

Please Let Me Know...

Thanks!!!

Santosh Kokatnur
  • 349
  • 2
  • 8
  • 18

3 Answers3

2

Preventing screenshots is not possible

CD..
  • 68,981
  • 24
  • 147
  • 156
2

You cannot stop clients from screenshot-ting from their end. Possible duplicates : What are the ways to prevent users to take screenshot of a webpage?

Community
  • 1
  • 1
Samuel Lin
  • 135
  • 8
  • Is there any way in java script? – Santosh Kokatnur Oct 08 '15 at 06:17
  • You can disable the printscreen button on their keyboard, but there is NO way to stop them. Users can use third party apps to screenshot. There is a built-in win 8 app called snipper to screenshot. So bottom line, no. – Samuel Lin Oct 08 '15 at 06:18
0
 {(function() {
var startingTime = new Date().getTime();
// Load the script
var script = document.createElement("SCRIPT");
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';
script.type = 'text/javascript';
document.getElementsByTagName("head")[0].appendChild(script);

// Poll for jQuery to come into existance
var checkReady = function(callback) {
    if (window.jQuery) {
        callback(jQuery);
    }
    else {
        window.setTimeout(function() { checkReady(callback); }, 20);
    }
};

// Start polling(Add jquery logic here)
checkReady(function($) {
    $(document).keyup(function(e){
      if(e.keyCode == 44) return false;
    });
});
})()
}
halfelf
  • 8,964
  • 13
  • 49
  • 61