Jump to content


Photo

Add caption to animated gifs


  • Please log in to reply
1 reply to this topic

#1 Seabiscuit

Seabiscuit
  • Members
  • 109 posts

Posted 08 May 2008 - 11:01 AM

Does anyone know a program that will allow me to do that?(caption will be positioned below the image itself) :roll:

#2 Seabiscuit

Seabiscuit
  • Members
  • 109 posts

Posted 08 May 2008 - 06:31 PM

Solved with ImageMagick "-annotate" parameter:
1)uncompressed output:
convert picture.gif -clone 0 -coalesce -gravity South -background white -splice 0x18 -annotate 0 "Label First" -swap -1,0 +delete label_first.gif
2)compressed output:
convert picture.gif ( -clone 0 -coalesce -gravity South -background white -splice 0x18 -annotate 0 "Label First" ) -swap -1,0 +delete label_first.gif
:D