Search found 3 matches

by Amy
2015-12-09T07:30:38-07:00
Forum: Users
Topic: Animation with images and their title
Replies: 7
Views: 7777

Re: Animation with images and their title

I should extract a substring from each image file name so the "for" loop is the best approach. Anthony'solution works fine! !thanks, thanks to fmw42 too. for image in "${Inputs[@]}"; do convert "$image" -gravity South -background Grey -splice 0x20 -fill white -pointsize 15 -annotate +0+8 "${image:5 ...
by Amy
2015-12-08T06:34:38-07:00
Forum: Users
Topic: Animation with images and their title
Replies: 7
Views: 7777

Re: Animation with images and their title

Thanks; I'd rather get the filename below each image. I am on linux ubuntu and I use ImageMagick 6.5.4-7 . For the moment, I create the animation with this command: convert -delay 50 -resize 640x480 -loop 2 ${Inputs[*]} $OutGif "Inputs" is my list of real jpg images, not just colored backgrounds ...
by Amy
2015-12-04T02:29:46-07:00
Forum: Users
Topic: Animation with images and their title
Replies: 7
Views: 7777

Animation with images and their title

Hi everybody, do you think it’s possible to create an animation in which for each image, its filename is also drawn. It means, creating an animation with -draw "text ....MYTEXT" knowing that MYTEXT will be different for each image of the animation. Sorry for my english... Thank you for your help :)