Support watermarks on CCK fields.
Supoort non-scalable watermarks for the image cache module.

Comments

Anonymous’s picture

Yes, this would be very useful to have on CCK Image Fields/ImageCache.

Christopher Herberte’s picture

subscribe/bump

schnizZzla’s picture

I am not going to implement more features at this moment. I still have some work left on basic issues, that do not work as expected.

I would like to postpone that, but I leave this request on the list. It's an useful feature for sure, after basic problems have been handled.

TallDavid’s picture

subscribe/bump

texas-bronius’s picture

My templates have currently been using only imagecache which had been confusing me as to why my watermarks weren't showing up until I hit this issue queue. Fyi, to get the watermarked images to show in your theme when using imagecache, something like this works:

   <?php
       $img = theme('imagecache', 'page-thumb', $node->images['Watermarked']);
       print l($img, "node/$node->nid", null, null, null, false, true);
   ?>

where "Watermarked" is my Image module "Image sizes" namespace.
Granted, this resizes the watermarked image, so the watermark itself will be scaled along with the image and will potentially even get crop-chopped or cropped out entirely.

TallDavid’s picture

Status: Active » Closed (fixed)

The Imagecache Actions module (http://drupal.org/project/imagecache_actions ) supports watermarks when used in combination with Imagecache. Production versions have be released for both Drupal 5 and Drupal 6. Closing the ticket since the issue has been resolved.