Page 1 of 1

How can i add a disclamer to any page of a multipage tif?

Posted: 2008-04-24T05:28:32-07:00
by akustik
Hi

i'm using Imagemagick on windows command line.

i got 1 to 20 pages tif files, where i want to add a disclamer on the lower part of the page.

For a one page tif i got this sollution:

Code: Select all

convert^
 -size 1728x2208 xc:white -draw "image over 150,20  1382,1766  'FaxOrig.tif'"^
 -font Arial -pointsize 48 -annotate +185+1875 "disclamer text"^
 Fax_with_disclamer.tif
But how can i do this for a 20 pages tif file?

Do you have any ideas?

Many thanks
Patrick

Re: How can i add a disclamer to any page of a multipage tif?

Posted: 2008-04-24T21:54:59-07:00
by fmw42
use -coalesce

See:

http://www.imagemagick.org/Usage/anim_mods/#label

This should work for tiff frames as well as gif frames, but I have not tested it.