no watermark on customized thumbnails

I have a problem on the album page album.php
I use printCustomSizedImage() for the thumbnails. The output list gives me well scaled thumbnails, but watermarked! I only want the big single image in image.php watermarked. Someone an idea ..?

Loop code in album.php
------------------

<? while (next_image()): ?>
<div class="imagethumb">" title="<? echo getImageDesc()?>"><? printCustomSizedImage(getImageDesc(), null,156);?></div>
<? endwhile; ?>

Comments

  • You could try using `printCustomAlbumThumbImage()` instead.
  • thanx for the quick respond. mmh, still doesn't work, still watermarked thumbs.
    printCustomAlbumThumbImage() is for an overview of all albums I guess.
    I need all images of an album..
    I use printCustomSizedImage() because I have another output of thumbs (in another size) on the homepage.

    www.aedt.de
  • You will have to delete your cache. Watermarks are part of the cached image, so if you change things to not watermark them you have to delete all the images in the cache that have a watermark in them.

    You might also want to try tonight's nightly build. There has been some new implementation on watermarking. In particular, there is an eleventh parameter to `printCustomSizedImage()` to control whether the image is watermarked or not. Pass `true` to have it supress the watermarking.
  • ok, works fine now for upcomming photos, thnx a lot.
Sign In or Register to comment.