Is it possible to setup the templates to put a watermark over every image uploaded into the gallery, as currently the only way I can do it is by putting a water mark on each individual image prior to uploading.
Thanks Darren.
Adding Watermarks to Galleries.
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: Adding Watermarks to Galleries.
No, there's no code to do this at the moment, you'd have to contact a developer to write something to do that.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Adding Watermarks to Galleries.
right ok, thank you for the response.
Re: Adding Watermarks to Galleries.
did u ever get this solved?
Re: Adding Watermarks to Galleries.
Hi,
haven't tried it, but you might be able to use something like that:
http://www.trap17.com/index.php/waterma ... 36015.html
Try to create an UDT and integrate it into your gallery template. However, on a very busy server, this may cause performance problems.
There are a lot of similar scripts out there:
http://www.google.de/search?q=watermark+.jpg+php
But: Why not do it prior to uploading?
Have you considered using a software like ImageTasks (Freeware!)? You can batch edit hundreds of pictures at once.
Or use
http://www.traumflieger.de/desktop/onli ... /index.php
(German only, but easy to comprehend)
Or you could write a script for PhotoShop (don't know whcih software you are using).
hth,
Alex
haven't tried it, but you might be able to use something like that:
http://www.trap17.com/index.php/waterma ... 36015.html
Try to create an UDT and integrate it into your gallery template. However, on a very busy server, this may cause performance problems.
There are a lot of similar scripts out there:
http://www.google.de/search?q=watermark+.jpg+php
But: Why not do it prior to uploading?
Have you considered using a software like ImageTasks (Freeware!)? You can batch edit hundreds of pictures at once.
Or use
http://www.traumflieger.de/desktop/onli ... /index.php
(German only, but easy to comprehend)
Or you could write a script for PhotoShop (don't know whcih software you are using).
hth,
Alex
-
- Power Poster
- Posts: 424
- Joined: Sat Feb 02, 2008 12:42 am
Re: Adding Watermarks to Galleries.
I recently did this with css using the lyteshow template in my album. Just need to create your watermark image as a png with transparency (if applicable) then apply it as a background image in the imagecontainer of the styles.
Not sure about the other album templates and it's not actually watermarking them, just laying it over the photos.
Not sure about the other album templates and it's not actually watermarking them, just laying it over the photos.
Take a penny, leave a penny.
Re: Adding Watermarks to Galleries.
How did u stop the main image covering up the watermark?
-
- Power Poster
- Posts: 424
- Joined: Sat Feb 02, 2008 12:42 am
Re: Adding Watermarks to Galleries.
Here is the css I'm using:
I added the:
Again, this is an example using the lyteshow template.
Code: Select all
#lbImageContainer>#lbHoverNav { left: 0; background:url(uploads/images/watermark.png) right bottom no-repeat}
Code: Select all
background:url(uploads/images/watermark.png) right bottom no-repeat
Take a penny, leave a penny.