Does anyone know a program that will allow me to do that?(caption will be positioned below the image itself) :roll:
Add caption to animated gifs
Started by
Seabiscuit
, May 08 2008 11:01 AM
1 reply to this topic
#1
Posted 08 May 2008 - 11:01 AM
#2
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
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




