Search found 4 matches
- 2011-12-30T04:41:11-07:00
- Forum: Users
- Topic: Animation from a single image
- Replies: 4
- Views: 7788
Re: Animation from a single image
By the way, the code ended like this when I adjusted the params: infile="test.gif" ww=`convert $infile -format "%w" info:` sub=1920 convert -size 1920x1080 xc:transparent fondotrans.gif xoff=0 inc=10 while [ $xoff -lt $((ww-sub)) ]; do convert -background transparent -gravity South -delay 10 ...
- 2011-12-30T03:48:14-07:00
- Forum: Users
- Topic: Animation from a single image
- Replies: 4
- Views: 7788
Re: Animation from a single image
Ok, i figured it was a bash script (Sorry for dumbness) and it worked perfectly. Thanks a lot, mate!
- 2011-12-30T01:23:05-07:00
- Forum: Users
- Topic: Animation from a single image
- Replies: 4
- Views: 7788
Re: Animation from a single image
Hi! Thanks for the reply, mate.
I was planning to run all the code that you replied in a bash script. I'm using Ubuntu 10.4 with ImageMagick 6.6.2-6 2011-03-16 Q16.
Thanks for the code, but i dunno what to do with it! A bit newbie here. Is it PERL or something?
I was planning to run all the code that you replied in a bash script. I'm using Ubuntu 10.4 with ImageMagick 6.6.2-6 2011-03-16 Q16.
Thanks for the code, but i dunno what to do with it! A bit newbie here. Is it PERL or something?
- 2011-12-28T02:38:59-07:00
- Forum: Users
- Topic: Animation from a single image
- Replies: 4
- Views: 7788
Animation from a single image
Hello everyone, first of all, thanks for reading this. Second, sorry for any mistake I do in this post, english isn't obviously my native language. Going to the point, i would like to generate an animated image from a single image. Explaining it further, imagine you have a huge image, like 4000x1080 ...