I'm trying to find a way to apply a watermark and opacity mask on an image using imagemagick.
Source
Result
Thank you all for reading.
Apply opacity mask and annotate watermark with imagemagick
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Apply opacity mask and annotate watermark with imagemagi
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
)
snibgo's IM pages: im.snibgo.com