Register   Login
     
  Latest Posts  
RE: zoom for images in PA and Simple gallery
by bertrand.duluc on 12/04/2008 5:04 PM
RE: How do I - templates
by cptkoi on 12/04/2008 4:36 PM
RE: Notification on comment and multiple authors
by ba on 12/04/2008 3:29 PM
RE: RSS error in event viewer
by jjovic on 12/04/2008 3:24 PM
RE: conditional testing over [TYPE] or [TYPEID]
by zoulou on 12/04/2008 3:19 PM
RE: Notification on comment and multiple authors
by smcculloch on 12/04/2008 3:18 PM
RE: Notification on comment and multiple authors
by smcculloch on 12/04/2008 3:17 PM
RE: Notification on comment and multiple authors
by ba on 12/04/2008 3:15 PM
RE: Notification on comment and multiple authors
by ba on 12/04/2008 3:11 PM
RE: Notification on comment and multiple authors
by smcculloch on 12/04/2008 3:05 PM
  Forums  
Subject: Watermark Feature
Prev Next
You are not authorized to post a reply.

Author Messages
Siva Pon SundaralingamUser is Offline
Gold Membership
Nuke Newbie
Nuke Newbie
Posts:7

3/24/2006 1:46 PM  

Hi All,

I am wondering when this feature will be available?  It will be very useful to add to the pictures, thus when users view them and try to right click and save picture will have the watermark in them !

Any thoughts on this ?

Thanks
Siva.

Scott McCullochUser is Offline
Administrators
Nuke Master
Nuke Master
Posts:12596


3/26/2006 4:43 PM  
I have the code, I'll try to integrate it this week.

Scott McCulloch
Site Administrator
Siva Pon SundaralingamUser is Offline
Gold Membership
Nuke Newbie
Nuke Newbie
Posts:7

3/28/2006 12:29 PM  

Thanks a lot Scott !!! You are doing a greate job on your components !

Siva.S.

Alec WhittingtonUser is Offline
Registered Users
Nuke Newbie
Nuke Newbie
Posts:5

4/07/2006 1:23 PM  
Scott,
How much longer on the watermark feature? I submitted the code a while ago now.

I have already implemented it in the last version. I cannot live without this as my clients, most of them Aussies, have to have this.

Thanks for the hardwork you put into this stuff.

Alec
Scott McCullochUser is Offline
Administrators
Nuke Master
Nuke Master
Posts:12596


4/09/2006 6:46 AM  
Hi Alec, in the codebase now, thanks for sending it through and sorry for the delay!

Scott McCulloch
Site Administrator
Matt ThomasUser is Offline
Gold Membership
Nuke Newbie
Nuke Newbie
Posts:5

4/10/2006 3:30 PM  

I have to agree, this is a feature I have also been looking ofrward to seeing included. I have installed the new Simple Gallery and see the info for the Watermark inclusion and text.

What I do not see is any place to upload or change the watermark..Any ideas where the watermark image will live?

Scott McCullochUser is Offline
Administrators
Nuke Master
Nuke Master
Posts:12596


4/10/2006 5:03 PM  
The watermark is actually applied directly to the image during the upload process.

Scott McCulloch
Site Administrator
Siva Pon SundaralingamUser is Offline
Gold Membership
Nuke Newbie
Nuke Newbie
Posts:7

4/10/2006 7:07 PM  
Is it possible to do this when you display image dynamically ? That way we may be able to apply different water marks on different albums ? I am not sure about how the code works ! Please let us know

Thanks Scott.
Matt ThomasUser is Offline
Gold Membership
Nuke Newbie
Nuke Newbie
Posts:5

4/10/2006 8:58 PM  

Scott, so the watermark is just text correct? I was thinking maybe the watermark was an image along with text.

Any clarification would be great, so far the text works great, thanks!

Scott McCullochUser is Offline
Administrators
Nuke Master
Nuke Master
Posts:12596


4/10/2006 11:32 PM  
It's not possible currently but could be worked into the module.

Currently when a photo is uploaded and the watermark option is set (along with some text), the text is added to the uploaded to the image. This change is [b]permenant[/b].

I could add an option to add an image over the top of the uploaded image. The question is should it be permenant or should it be dynamically added on each view of an image? There are obviously advantages either way.

Scott McCulloch
Site Administrator
DNN ProfessorUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:743


4/11/2006 3:53 AM  

Hi Scott,

Will the text be configurable? it would be nice to have the copyright symbol before the text.


Buck Anderson
DNNprofessor.com
www.dnnprofessor.com
JustNorth Outdoors
www.justnorth.com
Jive Media
www.jivemg.com
Scott McCullochUser is Offline
Administrators
Nuke Master
Nuke Master
Posts:12596


4/11/2006 5:30 AM  
You should be able to specify the text in view options

Scott McCulloch
Site Administrator
Déclic VidéoUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:781


3/13/2008 5:51 AM  
Hello Buck,

You can modify the text, I have just tried, it works perfectlly !!! I added the © symbol as well.
Is it possible to display it somewhere else than bottom-center ?
Left would be ideal... And dynamic as well (to avoid that all pictures currently loaded does not have the watermark and all new one have the watermark)



DV
PS: For those who are interested, I have added a javascript in the page, to disable the right click and "save picture as" (of course, by disabling javascript in your navigator, you can bypass this security...)

Non linear video editing software, tips and tricks, tutorials... Déclic Vidéo FX
Scott McCullochUser is Offline
Administrators
Nuke Master
Nuke Master
Posts:12596


3/14/2008 3:23 AM  
Thanks DV!

Scott McCulloch
Site Administrator
Déclic VidéoUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:781


3/14/2008 5:56 AM  
Oups, I forget the javascript...

Replace ] with > and [ with <

[script language="JavaScript1.2"]
var clickmessage="© right click disable - customise your message here"
function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}
function associateimages(){
for(i=0;i document.images[i].onmousedown=disableclick;
}
if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()
[/script]

Non linear video editing software, tips and tricks, tutorials... Déclic Vidéo FX
You are not authorized to post a reply.
Forums > Modules > Simple Gallery > Watermark Feature



ActiveForums 3.7