0

I am trying to disable save/copy options on all the images on my application except for the images which are inside an anchor tag ( tag).

Divya
  • 79
  • 1
  • 3
  • 12
  • It's not possible to prevent this without a high-tech algorithm and different framework. Because image and all others files are stored in a separate folder and can be viewed by their URL. – Rajat Jain Jul 11 '18 at 17:04
  • For that, an image is divided into very small parts and saved with a random string name. so that if it will become very difficult for the others to get the full picture by combining those parts of the images. – Rajat Jain Jul 11 '18 at 17:59

2 Answers2

2

I don't think It is possible to stop user from saving images from browser. All application is present on browser in form of html. Any user can easily inspect and save you image. You may restrict right click on application. But still there are many way to open debugger.

Best you can post a disclaimer that images are copyrighted!

All the best

Gourav mewada
  • 21
  • 1
  • 5
0

It's not possible to prevent this without a high-tech algorithm and different framework. Because image and all others files are stored in a separate folder and can be viewed by their URL.

A webpage is open in read mode. So, the user also has access to read images separately.

Rajat Jain
  • 1,339
  • 2
  • 16
  • 29