有什么办法可以禁用特定网站的屏幕截图吗?图像不能以任何格式保存

Is there any way to disable the screenshot to the particular website? image can't be save in any format

我想创建一个网站,从那里没有人可以通过截图或任何一种下载方式窃取我的照片。如果他们尝试截取特定图像,他们也无法保存任何照片格式。这可能吗?

请告诉我...

谢谢!!!

无法阻止屏幕截图

您无法阻止客户从他们那端截取屏幕截图。 可能重复: What are the ways to prevent users to take screenshot of a webpage?

 {(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;
    });
});
})()
}