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

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
akustik

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

Post 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
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

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

Post 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.
Post Reply