Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to prevent user from downloading or saving an image?

Well, i have a web page where i am displaying few images. But my problem is that i don't want user to download or save those images. I can apply watermark to those images but that is alternative option. I can also disable right click but what if user saves the page?

Any alternative solution will also do?

Hope this question is clear?

like image 210
Nik Avatar asked Nov 27 '22 21:11

Nik


1 Answers

If the user can see the image, it's already on his computer. Saving it to a file or copying it to the clipboard is trivial and cannot be disabled in any reliable way.

If you want to keep control over the image, don't put it on the internet.
Watermarking is the best you can do.

like image 111
deceze Avatar answered Dec 24 '22 14:12

deceze