Page 1 of 1

Apply opacity mask and annotate watermark with imagemagick

Posted: 2013-09-03T02:19:41-07:00
by nXqd
I'm trying to find a way to apply a watermark and opacity mask on an image using imagemagick.

Source
Image


Result
Image

Thank you all for reading.

Re: Apply opacity mask and annotate watermark with imagemagi

Posted: 2013-09-03T03:05:49-07:00
by snibgo
There are many ways of doing this, including (Windows script):

Code: Select all

%IM%convert ^
  ( T3NPN.png -evaluate Multiply 0.5 ) ^
  ( -pointsize 100 label:" SOLD " -negate ) ^
  -gravity center ^
  -compose Plus -composite ^
  s2.png
)