Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
deklin
Posts: 5 Joined: 2016-03-07T10:09:35-07:00
Authentication code: 1151
Post
by deklin » 2016-03-07T10:36:30-07:00
I would like to add a blue circle to a fixed location of an animated GIF
Code: Select all
convert image.gif -draw "fill blue circle 10,10 15,15" circle.gif
I get two circles. One circle is where I want it but I also get an unwanted bonus circle that jumps around.
snibgo
Posts: 12159 Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK
Post
by snibgo » 2016-03-07T10:50:44-07:00
You need to "-layers coalesce" the input, before drawing the ball on each frame.
deklin
Posts: 5 Joined: 2016-03-07T10:09:35-07:00
Authentication code: 1151
Post
by deklin » 2016-03-07T13:10:44-07:00
Thanks, that solved it.