Search found 8 matches
- 2015-03-13T13:41:20-07:00
- Forum: Users
- Topic: how to avoid blinking in a gif with infinite loop
- Replies: 13
- Views: 7533
Re: how to avoid blinking in a gif with infinite loop
And thank you snibgo for all your help!
- 2015-03-13T13:32:07-07:00
- Forum: Users
- Topic: how to avoid blinking in a gif with infinite loop
- Replies: 13
- Views: 7533
Re: how to avoid blinking in a gif with infinite loop
Also I added to speed up the "bobbling"
Code: Select all
-set delay 5
- 2015-03-13T13:27:42-07:00
- Forum: Users
- Topic: how to avoid blinking in a gif with infinite loop
- Replies: 13
- Views: 7533
Re: how to avoid blinking in a gif with infinite loop
I have a lot to learn with Imagemagick. Just so I understand your code, I'm going to try to explain it myself: convert ^ body.png -background White -flatten ^ head.png ^ ( -clone 0-1 -composite ) ^ ( -clone 0-1 -geometry +2+5 -composite ) ^ ( -clone 0-1 -geometry +0+10 -composite ) ^ ( -clone 0-1 ...
- 2015-03-13T11:05:14-07:00
- Forum: Users
- Topic: how to avoid blinking in a gif with infinite loop
- Replies: 13
- Views: 7533
Re: how to avoid blinking in a gif with infinite loop
And using the code from the first comment convert -dispose none -delay 0 \ body.png \ -dispose previous -delay 0 \ -page +0+0 head.png \ -dispose previous -delay 5 \ -page +0+0 head.png \ -page +2+5 head.png \ -page +0+10 head.png \ -page +2+15 head.png \ -page +0+10 head.png \ -page +2+5 head.png ...
- 2015-03-13T11:02:24-07:00
- Forum: Users
- Topic: how to avoid blinking in a gif with infinite loop
- Replies: 13
- Views: 7533
Re: how to avoid blinking in a gif with infinite loop
body: http://104.130.236.196/body.png
head: http://104.130.236.196/head.png
The images are both 400x400 to make it easy to offset the head. The head has a transparent background.
head: http://104.130.236.196/head.png
The images are both 400x400 to make it easy to offset the head. The head has a transparent background.
- 2015-03-13T10:42:23-07:00
- Forum: Users
- Topic: how to avoid blinking in a gif with infinite loop
- Replies: 13
- Views: 7533
Re: how to avoid blinking in a gif with infinite loop
Thank you for the ideas, but I'm a little confused. I don't want the body to move at all. The head needs to "bobble" up and down with a slight rotation back and forth. How would I utilize +clone here? That moves both the body and the head down 200px and when i explode the GIF, it just shows all the ...
- 2015-03-13T08:09:23-07:00
- Forum: Users
- Topic: how to avoid blinking in a gif with infinite loop
- Replies: 13
- Views: 7533
Re: how to avoid blinking in a gif with infinite loop
Ok but I need the head to disappear when the bobbling begins
- 2015-03-12T16:03:46-07:00
- Forum: Users
- Topic: how to avoid blinking in a gif with infinite loop
- Replies: 13
- Views: 7533
how to avoid blinking in a gif with infinite loop
Hi folks, Just started out with ImageMagick. I'm trying to create a bobble head effect with the following command: body.png is a headless body. head.png is just the head for the body. convert -dispose none -delay 0 \ body.png \ -dispose previous -delay 0 \ -page +0+0 head.png \ -dispose previous ...