The following code works to add watermarks to images:
Code: Select all
composite -watermark 30% -gravity south the_watermark.png pic_to_be_watermaked.png watermark_completed.png
- It doesn't work when I try to watermark an animated GIF
- How to use this watermark command in conjunction with the command below?
This command takes all the PNGs inside the folder "static_images" and combines them into an animated GIF. It also makes sure that the image is 350px in width and the height is kept to the proper aspect ratio. It also gives the image some fuzz and sets the speed of the animation to 4 and makes sure it loops infinitely:
Code: Select all
convert -resize 350x350 -fuzz 1.6% -delay 4 -loop 0 static_images/*.png -layers OptimizePlus -layers OptimizeTransparency animated_gif.gif
---------------
1. How can I combine the watermark command with the one above?
2. How can I get the watermark commmand to work with animated GIFs?