Disable Default Save Image Option In Mobile for opera mini browser

I’m trying to disable save image option in opera mini browser. But this code is not working for opera mini. but this is working for all other browsers like crome, firefox, safari. Only in opera mini it is not working. Please help me to solve my query. Here is my code

    <!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<meta http-equiv="imagetoolbar" content="no" />
		<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
		<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
		
		
	</head>
	<body oncontextmenu="alert('You may not right click'); return false;" ondragstart="return false" onselectstart="return false" style="-webkit-user-select: none; -moz-user-select:none;-ms-user-select:none;user-select: none;-webkit-touch-callout:none;-moz-touch-callout:none;-ms-touch-callout:none;touch-callout:none;-webkit-pointer-events: none;-moz-pointer-events: none;-ms-pointer-events: none;pointer-events: none;">
		<img src="watermark-1.jpg" width="400" style="-webkit-user-select: none; -moz-user-select:none;-ms-user-select:none;user-select: none;-webkit-touch-callout:none;-moz-touch-callout:none;-ms-touch-callout:none;touch-callout:none;-webkit-pointer-events: none;-moz-pointer-events: none;-ms-pointer-events: none;pointer-events: none;">
	</body>
</html>

No it isn’t - anyone wanting to steal your image would turn off JavaScript so that none of the code you have there to annoy legitimate visitors will have any effect on thieves.

4 Likes

There are other tricks you can try, like placing a transparent image over the actual image, but as said, none of these measures can stop people from downloading / copying the image in some way. Once it’s downloaded to the browser, the end user has it. So the best option, really, is either not to put it online, or perhaps make the quality such that people won’t be inclined / able to use it for any serious purpose.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.