How to prevent downloading images and video files from my website? Is it possible? What would be the best way to do this?
|
|
No, it's not possible. If you can see it, you can get it. |
|||||||||||||||||||
|
|
Images must be downloaded in order to be viewed by the client. Videos are a similar case, in many scenarios. You can setup proxy scripts to serve the files out, but that doesn't really solve the issue of preventing the user from getting their own copy. For a more thorough discussion of this topic, see the question How can I prevent/make it hard to download my flash video? |
|||
|
|
|
In short, no. If someone can view an image or video in their browser then they have, by definition, downloaded it. That's how the web works - it is client server based. Whatever you can view in your browser (client) has been transfered to your computer from the remote website (server). |
|||||
|
|
In standard HTML, I don't know of anyway. You didn't really say, but I'm guessing you are having problems with people deep linking into your content. If that's the case, and you are open to server side code, I believe this might work:
This :
But it's a general outline of a workable process which might help you prevent users from deep linking. |
|||
|
|
|
As many have said, you can't stop someone from downloading content. You just can't. But you can make it harder. You can overlay images with a transparent If you're worried about cross-linking (ie, other people linking to your images, you can check the HTTP referrer and redirect requests which come from a domain which isn't yours to "something else". |
|||
|
|
|
I'd like to add a more philosophical comment. The whole intent of the internet, particularly the World Wide Web, is to share data. If you don't want people to download a picture/video/document, don't put it on the web. It's really that simple. Too many people think they can impose their own rules on an existing design. Those who want to post content on the web, and control its distribution, are looking to have their cake and eat it too. |
|||
|
|
|
It also doesn't hurt to watermark your images with Photoshop or even in Lightroom 3 now. Make sure the watermark is clear and in a conspicuous place on your image. That way if it's downloaded, at least you get the advertising! |
|||
|
|
|
try these techniques for images : |
|||
|
|
|
No it's not. You may block right-clicks and simillar stuff but if someone wants to download it, he will do so, trust me ;) |
|||||||
|
|
As soon as they view your page that includes the picture or video, the item is downloaded into the temporary folder of their browser. So if you don't want it downloaded, don't post it. |
|||
|
|
|
You can mark folders or files so that they don't have read access (any of the main web servers support this). This allows you to store them on the server without any level of access to the outside world. You may want to do this if you have a service that generates images for someone else to download later, or if you use your web account for FTP access, but don't want anyone to view the files. (i.e. upload a .bak file to the server for someone else to FTP down again). However, as others have said, getting into copyright areas where people can view the image or video but not save them locally is not fully possibly, although there are tools to discourage illegal usage. |
|||
|
|
|
Put your image or video in flash format. Works great. |
|||
|
Insert a transparent gif 1px x 1px just inside the body tag:
Then style it with this:
This will remove any click functionality from a page, but it sure stops people stealing any content! You can apply the same to a div, section, article etc, just name accordingly and prevent your copy and/or images being ripped. Nothing stops a screengrab though ... ... |
|||||
|
