With numerous social networking and picture sharing websites coming up every other day, one happens to wonder if all those personal images that you upload are safe? What if someone downloads it and uses it for illegal purposes?Is the internet safe to save personal information?
I would like to say here that, for a techie it is really possible to download any image from any website. It is next to impossible to make every picture of yours safe online. But then, there are some clever ways to prevent a straightforward download of your images. Read below:
First try to download the below images by using your usual “Save Image As” option from the right click menu option and see what happens
![]() |
As you might notice, the downloaded image is just a blank picture. It is an easy way to accomplish this, what I have done is made my daughter’s picture as the background to another transparent image of the same size. Here is how you can do it yourself, if you upload an image it will appear like below in your HTML code:
img src=”mypicture.jpg” alt=”” width=”242″ height=”300″
To incorporate the transparent image on top of it, you need to make this as a table as shown in the below piece of code:
table style=”background-image: url(‘mypicture.jpg’); width: 242; height: 300;”>
<tbody>
<tr>
<td><img src=”transparent.gif” alt=”” width=”242″ height=”300″ /></td>
</tr>
</tbody>
</table>
This is just one way of accomplishing the task, you might even think of possibly implementing the transparent image without having to include them inside of a table. Or else you might even disable the “Save As” option in the right click menu option by just including your image in a table without having the <img src> section inside of the <td>.
Image protection with a watermark – The most common, and possibly strongest, image protection technique is to place a visual copyright watermark on the image. Image watermarks come in a range of styles: from a full copyright symbol across the image to a small text in the corner of an image containing the copyright symbol, date, and name of the copyright holder. There is a trade off with watermark size: the larger the watermark the less likely one is to download or steal the image, but the larger the watermark the more of a visual distraction it becomes.
Disable right click option – You can possibly think of writing a small Javascript that will actually prevent the right click menu from appearing. This is also one of the common methods implemented in most of the sites to prevent users from downloading the images. You can find many examples of such Javascripts if you google, i will leave this at your descretion to use the most efficient one as per your need.
“NoFollow” for Images – NoFollow tags for your pages will prevent the search engine from indexing the entire page, but what if you want only your image to be “NoFollowed” or not indexed. Then you simply provide the below line in your “meta” section.
meta name=”robots” content=”noimageindex”>
This will put a “NoFollow” tag only for your images and not your post content. Another way to prevent search engines from indexing your images is to include them in the robot.txt file as below:
User-Agent:*
Disallow:/images/
Disallow:/image.jpg
The above code tells the search engines bots or spiders to disregard the “images” folder and also to disregard the “image.jpg” while indexing your website.
These were some ways to protect your images online and prevent them from mis-used or re-used by other bloggers. Do you think you have a better idea in mind? Why dont you share it with us and we can all benefit from the same. Thanks for reading.
Courtesy: Amit Agarwal
Great tips! I knew there were ways to make stealing images more difficult, I just didn’t know exactly what they were.
Your daughter is adorable by the way! 🙂
Thanks Emily.
Cool Praveen. Surely this will help when you post crucial images. Neha looks awesome and Charming. Thanks Manickam
Thanks Mani for your comment.
Its really Cool one. Interesting too… 🙂
Thanks Thiru.
thanks Praveen , useful article,. Btw , how do we put watermark on images ?
Prashanth – there are many tools that help you like “PDF Watermark” or “IceMark” which are easy to use. But if you are comfortable with any imaging software like PhotoShop you can give it a try yourself. See this link for more details – http://www.makeuseof.com/tag/watermark-images-photoshop/
What a sweetie!
I can still use printscreen to copy the image of your daughter – I do this when I work on our film festival, and the original site is in Flash.
Watermarks seem to be the best solution for photographers. It’s an art form in itself. Some do it well, some mess up their photos doing so. I just don’t post any hi-res photos, so if someone needs a print version, they need to ask me. If I were really trying to sell my photos, I might spend more time watermarking the ones I put online.
Leora – I knew you would be interested about images related information. Also the above methods just prevent the straight forward copy or save of the images. A little hack will allow you to download them as most of us know. Watermarking is the best technique i agree.
Your daughter is cute 🙂
An alternative thinking is to use a copy left license such as the creative commons licenses .. http://creativecommons.org/ (may not work in all cases though)
Thanks Sanooj, i havent explored that option yet…