Swirl images with ImageMagick
This simple snippet can be used for creating animated gif images with swirl effects. I was bored at home and saw that ImageMagick was installed in my machine. 🙂 So started playing with that. 🙂 The shell script will create the second image from the first image shown below. —–> #!/bin/bash FILENAME=”hari.png” FRAMES=30 ROTATEANGLE=30 OPTION=”swirl” declare -i I COMMANDOPTION=””; I=0; …