Search found 3 matches

by Tacakas
2011-06-22T14:46:30-07:00
Forum: Users
Topic: Semi transparent text watermark w shadow
Replies: 5
Views: 13588

Re: Semi transparent text watermark w shadow

This is what I was looking for:
convert -channel rgba -pointsize 100 -strokewidth 2 logo: ( -background transparent -stroke #000b -fill #000a label:"mark" -blur 3x3 -stroke none -fill #ffff label:"mark" -flatten ) -compose dissolve -define compose:args=50 -composite -quality 100 out.jpg

After ...
by Tacakas
2011-06-21T14:02:25-07:00
Forum: Users
Topic: Semi transparent text watermark w shadow
Replies: 5
Views: 13588

Re: Semi transparent text watermark w shadow

Thanks, but it's not what I asked about.
convert -channel rgba -pointsize 100 -strokewidth 2 logo: ( -background transparent -stroke #000b -fill #000a label:"mark" -blur 3x3 -stroke none -fill #ffff label:"mark" ) -compose dissolve -define compose:args=50 -composite -quality 100 out.jpg
What I ...
by Tacakas
2011-06-21T13:36:20-07:00
Forum: Users
Topic: Semi transparent text watermark w shadow
Replies: 5
Views: 13588

Semi transparent text watermark w shadow

Hello.

I'm trying use this, but without success
convert -channel rgba -pointsize 30 -strokewidth 2 "in.jpg" ^( -background transparent -stroke #000b -fill #000a label:"mark" -blur 3x3 -stroke none -fill #ffff label:"mark" ^) -compose dissolve -define compose:args=50 -composite -quality 100 "out ...