I am going to rotate a gif image with transparent color. But after the rotation, the image loses the transparency and has a non-transparent background. How could I do it correctly with both transparent color and transparent background?
Here is my command:
convert test.gif -alpha set -rotate 30 -background transparent rotate.gif
Thanks.