Search found 5 matches

by n0_namer
2017-02-04T14:46:29-07:00
Forum: Users
Topic: Proportional watermark
Replies: 21
Views: 22245

Re: Proportional watermark

Works perfect. Thanks, snibgo.
by n0_namer
2017-02-04T08:21:10-07:00
Forum: Users
Topic: Proportional watermark
Replies: 21
Views: 22245

Re: Proportional watermark

I tried this variant. It takes a height of the watermark.png but I need to take a height of the input.png.
by n0_namer
2017-02-04T06:51:51-07:00
Forum: Users
Topic: Proportional watermark
Replies: 21
Views: 22245

Re: Proportional watermark

Hello, I was trying to modify the code to make watermark always 1/6 height of input.png. It makes watermark smaller, but it also makes the input.png 1/6 of its height. Where have I made a mistake? I'm using Windows 10 x64 and IM 7.0.4-Q16. magick input.png watermark.png -resize x%[fx:u[0].h/5] -grav...
by n0_namer
2017-02-03T11:30:00-07:00
Forum: Users
Topic: Watermark opacity and animated gif
Replies: 3
Views: 3323

Re: Watermark opacity and animated gif

Thank you very much, snibgo.
snibgo wrote: 2017-02-03T10:55:11-07:00 Instead of ...

Code: Select all

watermark.png
... you can have something like:

Code: Select all

( watermark.png -alpha set -channel A -evaluate multiply 0.3 +channel )
by n0_namer
2017-02-03T10:10:25-07:00
Forum: Users
Topic: Watermark opacity and animated gif
Replies: 3
Views: 3323

Watermark opacity and animated gif

Hello. I'm newbie in IM. I'm using this script in order to place watermark.png on animated gif. (Windows 10 x64 and IM 7.0.4-Q16) set INDIR=d:\ set OUTDIR=d:\LOGO for /F "usebackq" %%F in (`dir /b %INDIR%\*.gif`) do ( magick "%INDIR%\%%F" -gravity SouthEast null: watermark.png -l...