I'm building a webshop that offers people certain photos. In this webshop you can (of course) view your pictures.
So to make sure the photos are safe from downloading directly from the site, I gave all my image html tags the code
oncontextmenu="return false;"
Now this protects the photos from right-clicking and saving them. The problem is that if a user is smart enough to just drag the photo to their desktop, they can still download the picture.
Is there a (easy) way to protect these images from all forms of download?
oncontextmenu = return falsejust to reduce stealing. So, watermarks, low res previews, unpredictable file names, delivery by script, prevented hotlinking - all helps reduce stealing. – dmitry Dec 13 '11 at 15:22