Skip to content

Instantly share code, notes, and snippets.

@ykarikos
Last active March 28, 2018 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ykarikos/e62f756ce6e1846c571a07de541a0dfd to your computer and use it in GitHub Desktop.
Save ykarikos/e62f756ce6e1846c571a07de541a0dfd to your computer and use it in GitHub Desktop.
Create spinning and rotating gif with GraphicsMagick
mkdir spin
for angle in `seq 360 30 690`; do gm convert original.jpg -background "#FFFFFF" -rotate $angle -crop 512x512+0+0 spin/$angle.png; done
cd spin
gm convert *.png -loop 0 -delay 20 spinningfoobar.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment