in reply to Dumb Question #2 - ImageMagick

Not specifying exactly what you mean I can only guess...

I'm a bit rusty on this, but I think the syntax you need is something like this:

# $image is current pic # $watermark is "faint-dark-grey-design-on-black- # background-image" object. $image->Composite(compose => 'Plus', image => $watermark, x => 10, y => 10 );
where x and y are the offsets for the watermark (I think :)

hth

cLive ;-)

Replies are listed 'Best First'.
Re: Re: Dumb Question #2 - ImageMagick
by lnl (Pilgrim) on Dec 31, 2001 at 09:20 UTC
    hmmm... that looks simple, but I assume you're showing how to use Image/Perl Magick. My problem is that the install is too complex for the simple use I would put it to. Thanks-- --lnl