Animated Gifs with watermarks

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
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Post by anthony »

-watermark is a composite trool that will only handle one single image.

To composte over a sequence of images, you need to use the "-draw image" method.
I don't have an actual example of compositing onto animations at this time, as I am waiting time to creat a few extra (and better) image sequence layer methods for alpha composition.

Hmmm something like this...

Code: Select all

    convert animation.gif  -coalesce \
                 -draw 'image over 20,30 0,0 "overlay.png"' \
                 -layers optimize  animation_overlayed.gif
STOP PRESS: Added Alpah Composition for Animations to the IM Examples Animation page...
http://www.cit.gu.edu.au/~anthony/graph ... s/#compose
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply