Photos and Images

For help regarding the message board and any other computer related matters you may have!

Photos and Images

Postby Ship called Dignity » Sun Jul 31, 2005 8:51 pm

Malky - I sent an e-mail to you about this via your campbeltownloch site but I'll post on here to see if anyone knows in general.

I am adding a new Photo Album to the site but I am keen to protect the images I am going to post.

I thought I had this sussed and added a bit of html which doesn't allow browsers to right click on the images and save to their PC.

However, I have since noticed - and this may be a feature only on XP(?) - if you hover your mouse on the top left corner of any image you are able to save the image to your PC.(!) You can also print it etc.

So how do you get round this? Or do you just have to hope that people respect your copyright?

David
User avatar
Ship called Dignity
Forum Addict
Forum Addict
 
Posts: 6025
Joined: Wed Feb 02, 2005 10:50 pm
Location: Campbeltown


Postby Jonathan » Sun Jul 31, 2005 10:11 pm

If the files are embedded within a site restrictions can be placed on them with regards to downloads etc from the html - similar to the disabled right-click.


http://www.webdeveloper.com/


Here might help.


You could also watermark the pics to make it clear they are yours.
Jonathan
Quite a Regular
Quite a Regular
 
Posts: 134
Joined: Tue May 10, 2005 8:21 am
Location: Larbert, Near Falkirk / Near Stirling


Postby Malky » Sun Jul 31, 2005 10:25 pm

Hi Davie,

Campbeltownloch email goes to Russell but eventually arrives at me if he wants me to do something :lol: :lol:

I also disabled right-click on the photos on the Campbeltownloch site with a simple script but you can still copy the photos via the edit menu in the browser :roll:

Of course, IE 6 then arrived on the scene with it's helpful little image toolbar that pops up and allows you to copy, print etc with ease :roll:

To be honest, there is no real way to protect images because as soon as anyone visits your page, all the images on it (along with the source code) are cached in your Temporary Internet Files and fully accessible. They could also do a screen capture if they were so inclined. Best you can do is make things difficult.

You've already disabled right-click so to disable the image toolbar in IE6 you have 2 options. Use either one of the following, whichever is easiest for your site.

1. Insert the following meta tag in the head of your document:

<META HTTP-EQUIV="imagetoolbar" CONTENT="no">

2. Use the galleryimg attribute in your image tag.

<img src=”myimage.jpg” width="210" height="250" GALLERYIMG="no" >

I believe you can also encrypt your code but I don't know too much about that. A Google search might help.

Last thing is digital copyrighting. All the images on the Campbeltownloch site are fixed up and put together by Russell who digitally signs them using Photoshop. You can't see it when viewing the image as its embedded in it.

Hope that helps :D 8)

Malky
User avatar
Malky
Forum Addict
Forum Addict
 
Posts: 1762
Joined: Mon Feb 28, 2005 11:08 pm


Postby Jonathan » Sun Jul 31, 2005 10:37 pm

Last thing is digital copyrighting. All the images on the Campbeltownloch site are fixed up and put together by Russell who digitally signs them using Photoshop. You can't see it when viewing the image as its embedded in it.



Yes embedding the owner info - but an obvious watermark usually is a nice deterent.
Jonathan
Quite a Regular
Quite a Regular
 
Posts: 134
Joined: Tue May 10, 2005 8:21 am
Location: Larbert, Near Falkirk / Near Stirling


Postby Ship called Dignity » Sun Jul 31, 2005 10:51 pm

Malky wrote:Of course, IE 6 then arrived on the scene with it's helpful little image toolbar that pops up and allows you to copy, print etc with ease :roll:


Its not just IE6 it does the same on firefox???
User avatar
Ship called Dignity
Forum Addict
Forum Addict
 
Posts: 6025
Joined: Wed Feb 02, 2005 10:50 pm
Location: Campbeltown


Postby Malky » Sun Jul 31, 2005 11:20 pm

I use firefox and it doesn't have that feature :?: :? Does it?

Malky
User avatar
Malky
Forum Addict
Forum Addict
 
Posts: 1762
Joined: Mon Feb 28, 2005 11:08 pm


Postby Ship called Dignity » Sun Jul 31, 2005 11:26 pm

Aye - your right - it was late night and I was sure I checked this on Firefox - must have been IE again! That is why I posted above the question about it being XP! Doh!

Are Microsoft stupid or something? Don't answer that question!

Anyway, cheers for that.

David
User avatar
Ship called Dignity
Forum Addict
Forum Addict
 
Posts: 6025
Joined: Wed Feb 02, 2005 10:50 pm
Location: Campbeltown


Postby Jonathan » Sun Jul 31, 2005 11:27 pm

Malky wrote:I use firefox and it doesn't have that feature :?: :? Does it?

Malky


Am sure it does via one of the many plugins available.
Jonathan
Quite a Regular
Quite a Regular
 
Posts: 134
Joined: Tue May 10, 2005 8:21 am
Location: Larbert, Near Falkirk / Near Stirling


Postby Ship called Dignity » Sun Jul 31, 2005 11:29 pm

But firefox allows you to right click! Regardless of your warning message!

Bandits!
User avatar
Ship called Dignity
Forum Addict
Forum Addict
 
Posts: 6025
Joined: Wed Feb 02, 2005 10:50 pm
Location: Campbeltown


Postby Jonathan » Sun Jul 31, 2005 11:40 pm

Davie P wrote:But firefox allows you to right click! Regardless of your warning message!

Bandits!



Hrm - I have visited a few sites where right clicks have been disabled from Firefox.
Jonathan
Quite a Regular
Quite a Regular
 
Posts: 134
Joined: Tue May 10, 2005 8:21 am
Location: Larbert, Near Falkirk / Near Stirling


Postby Malky » Sun Jul 31, 2005 11:52 pm

Haven't tried this myself Davie, but it's supposed to work with Firefox.

Worth a try eh :) :) Copy and Paste........

Code: Select all
<script language=JavaScript>
<!--

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>


Malky
User avatar
Malky
Forum Addict
Forum Addict
 
Posts: 1762
Joined: Mon Feb 28, 2005 11:08 pm


Postby Ship called Dignity » Sun Jul 31, 2005 11:57 pm

Cheers folks - that is the one I tried.

As I said it means you can't right click but anyone with IE 6 can obviously just hover over the image and save it.

It isn't a major problem as I could add watermarks - but as you well know that takes time! :cry:

Cheers again
User avatar
Ship called Dignity
Forum Addict
Forum Addict
 
Posts: 6025
Joined: Wed Feb 02, 2005 10:50 pm
Location: Campbeltown


Postby Malky » Mon Aug 01, 2005 12:02 am

Davie P wrote:As I said it means you can't right click but anyone with IE 6 can obviously just hover over the image and save it.


Have you tried the meta tag and the galleryimg tag I mentioned above to disable the image toolbar?

Malky
User avatar
Malky
Forum Addict
Forum Addict
 
Posts: 1762
Joined: Mon Feb 28, 2005 11:08 pm


Postby Ship called Dignity » Mon Aug 01, 2005 12:32 am

No Malky, working on something else for the site so will try this tomorrow evening! 8)

Here is hoping yon Bubbly Jock is not interested in IT stuff or he'll be on here saying we should just go onto Messenger or the likes!

Cheers anyway!
User avatar
Ship called Dignity
Forum Addict
Forum Addict
 
Posts: 6025
Joined: Wed Feb 02, 2005 10:50 pm
Location: Campbeltown


Postby GarySutherland » Fri Oct 07, 2005 4:19 pm

Like Malky said earlier, it's virtually impossible to prevent a determined user from saving a copy of an image shown on a website.

Personally I'm against the disabling of right-clicks and stuff on principle.

Cheers
Gary
GarySutherland
Can't Stay Away
Can't Stay Away
 
Posts: 670
Joined: Thu Feb 17, 2005 4:54 pm


Next

Return to Technical Support

Who is online

Users browsing this forum: No registered users and 1 guest