how do I lock photos into webpage so they can't be copied?

C

cetan

I am using java script to stop right clicking but my pictures can still be
taken as the save toolbar appears when the cursor is on the picture. I want
to protect my photos from general use. How do I go about it please?
 
T

Thomas A. Rowe

To block the IE Image Tool Bar as the following to the head section of your page in HTML/Code View:

<meta HTTP-EQUIV="ImageToolBar" CONTENT="No">
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
K

Kevin Spencer

This question is asked about every 2 days. I would suggest reading all of
the other answers.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
C

Computer Lady

cetan said:
I am using java script to stop right clicking but my pictures can still be
taken as the save toolbar appears when the cursor is on the picture. I want
to protect my photos from general use. How do I go about it please?

Ah... The old how do I protect an image on the web topic! <*sigh*> Never
seems to grow old no matter how many times it gets asked...

Okay, first off, I do not recommend disabling the right-click menu. As a
tool to protect images, it is useless. The images are already
transferred to the user's machine so they are easy to locate. All it
will do is annoy visitors to your site who use the right-click menu for
bookmarking a site, printing something, etc.

Overlaying a transparent GIF over the top of an image is of more use, I
think, than disabling the right-click menu. However, generating the code
to do that for a lot of images can be very time consuming.

Nor do I recommend image-slicing as a way of image protection. Doing
this doesn't stop anyone from using screen capture tools. So again, I
feel that is a wasted effort.

A better approach is to start by using a lower-quality image to begin
with, and include visible watermarks inside it. JPG files will reduce in
quality as they are compressed, so this will reduce bandwidth
consumption too. Just how much should you compress an image? This will
vary quite a bit depending on the image. Use graphic tools that allow
for an interactive view as you adjust this setting.

When creating a visible watermark, use the tools within your program to
make it semi-transparent. Emboss effects often work well, if your
program supports this. The idea is to have something that can easily be
seen, yet is difficult to remove from the image. Here are a couple of
online tutorials on this topic:

About.com's Tutorial in PhotoShop 5.5+
http://graphicssoft.about.com/cs/photoshop/ht/apswatermark.htm
About.com's Tutorial in Corel Photo Paint
http://graphicssoft.about.com/cs/photopaint/ht/cppwatermark.htm
About.com's Tutorial in Paint Shop Pro
http://graphicssoft.about.com/cs/paintshoppro/ht/pspwatermark.htm

There are other techniques that can be used which involve the use of
plug-ins and encrypted files. But, those are not cheap! Another concern
that goes along with this topic is how to prevent hotlinking. (Someone
linking to files located on your site, and claiming them as their own.)
As with anything else, you're going to have to decide just how much
effort and money you want to put into this. I might also suggest
speaking to a professional developer if any of the suggestions I've made
are beyond your capabilities.


[] Software Upgrade Installed: Press Your Luck to Continue

<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>
Irene M. Kraus a.k.a. The Computer Lady!
Graphic & Web Page Design http://www.design-comp.com
President/Webmaster - CEBUG http://www.cebug.org
 
T

Tom Pepper Willett

How do I stop people from downloading my graphics or code?

http://www.digitalmidget.com/help/noclick/

http://www.jamesshuggins.com/h/web1/how_do_i_stop_downloading.htm

http://www.jimcoaddins.com/protect.htm
| cetan wrote:
| > I am using java script to stop right clicking but my pictures can still
be
| > taken as the save toolbar appears when the cursor is on the picture. I
want
| > to protect my photos from general use. How do I go about it please?
|
| Ah... The old how do I protect an image on the web topic! <*sigh*> Never
| seems to grow old no matter how many times it gets asked...
|
| Okay, first off, I do not recommend disabling the right-click menu. As a
| tool to protect images, it is useless. The images are already
| transferred to the user's machine so they are easy to locate. All it
| will do is annoy visitors to your site who use the right-click menu for
| bookmarking a site, printing something, etc.
|
| Overlaying a transparent GIF over the top of an image is of more use, I
| think, than disabling the right-click menu. However, generating the code
| to do that for a lot of images can be very time consuming.
|
| Nor do I recommend image-slicing as a way of image protection. Doing
| this doesn't stop anyone from using screen capture tools. So again, I
| feel that is a wasted effort.
|
| A better approach is to start by using a lower-quality image to begin
| with, and include visible watermarks inside it. JPG files will reduce in
| quality as they are compressed, so this will reduce bandwidth
| consumption too. Just how much should you compress an image? This will
| vary quite a bit depending on the image. Use graphic tools that allow
| for an interactive view as you adjust this setting.
|
| When creating a visible watermark, use the tools within your program to
| make it semi-transparent. Emboss effects often work well, if your
| program supports this. The idea is to have something that can easily be
| seen, yet is difficult to remove from the image. Here are a couple of
| online tutorials on this topic:
|
| About.com's Tutorial in PhotoShop 5.5+
| http://graphicssoft.about.com/cs/photoshop/ht/apswatermark.htm
| About.com's Tutorial in Corel Photo Paint
| http://graphicssoft.about.com/cs/photopaint/ht/cppwatermark.htm
| About.com's Tutorial in Paint Shop Pro
| http://graphicssoft.about.com/cs/paintshoppro/ht/pspwatermark.htm
|
| There are other techniques that can be used which involve the use of
| plug-ins and encrypted files. But, those are not cheap! Another concern
| that goes along with this topic is how to prevent hotlinking. (Someone
| linking to files located on your site, and claiming them as their own.)
| As with anything else, you're going to have to decide just how much
| effort and money you want to put into this. I might also suggest
| speaking to a professional developer if any of the suggestions I've made
| are beyond your capabilities.
|
|
| [] Software Upgrade Installed: Press Your Luck to Continue
|
| <>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>-<>
| Irene M. Kraus a.k.a. The Computer Lady!
| Graphic & Web Page Design http://www.design-comp.com
| President/Webmaster - CEBUG http://www.cebug.org
 
Top