rotating layers composite image
Posted: 2007-08-23T07:25:06-07:00
Hello,
I'm looking to rotate an animated gif which I place on top of a jpeg file (with layers composite).
Right now I have this:
The code I used:
As you can see it gives a weird result. Is it possible to rotate the animated gif on top of the static jpeg file?
Thanks
I'm looking to rotate an animated gif which I place on top of a jpeg file (with layers composite).
Right now I have this:
The code I used:
Code: Select all
convert test.jpg null: \( top.gif -rotate -10 -sample 100x100 \) -gravity center -layers Composite test.gif
Thanks