The following are the PRE-REQUISITES for the GIF’s
You mainly need a utility called convert which is a part of imagemagick.
To create the animated GIF’s you need to first install HOMBREW via the following command:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Further install the utility with the following command:
brew install imagemagick
You need to set up a workflow through AUTOMATOR for this to work seamlessly
1> Open AUTOMATOR
2> Choose SERVICE
3> Open FILE AND FOLDERS from the pull down menu
4> Select FINDER
5> Drag Search for GET SELECTED FINDER ITEMS from the ACTION bar on the right top corner of your screen.
6> Also choose RUN SHEEL SCRIPT from the same area.
7> For the PASS INPUT, choose AS ARGUMENTS
8> Enter the following command in the field
/usr/local/bin/convert -delay 20 -loop 0 "[email protected]" ~/Desktop/animated.gif
9> Save the following file
10> Save the service and give it name as you please.
To use the same, you’ll need to
Choose a picture of your choice, right click and then Choose SERVICES-->MAKE ANIMATED GIF’s
After doing the same, a file name animated.gif will appear on your desktop.
Hence, you have learned to create GIF’s on your mac.
Go on, set them as your profile picture as you please.
P.S You can even customize the speed and looping by using the following commands
-delay 20 (Time in 100s/Frame)
-loop 0 (it negates the looping of gif, you can add and change it as needed).
You mainly need a utility called convert which is a part of imagemagick.
To create the animated GIF’s you need to first install HOMBREW via the following command:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Further install the utility with the following command:
brew install imagemagick
You need to set up a workflow through AUTOMATOR for this to work seamlessly
1> Open AUTOMATOR
2> Choose SERVICE
3> Open FILE AND FOLDERS from the pull down menu
4> Select FINDER
5> Drag Search for GET SELECTED FINDER ITEMS from the ACTION bar on the right top corner of your screen.
6> Also choose RUN SHEEL SCRIPT from the same area.
7> For the PASS INPUT, choose AS ARGUMENTS
8> Enter the following command in the field
/usr/local/bin/convert -delay 20 -loop 0 "[email protected]" ~/Desktop/animated.gif
9> Save the following file
10> Save the service and give it name as you please.
To use the same, you’ll need to
Choose a picture of your choice, right click and then Choose SERVICES-->MAKE ANIMATED GIF’s
After doing the same, a file name animated.gif will appear on your desktop.
Hence, you have learned to create GIF’s on your mac.
Go on, set them as your profile picture as you please.
P.S You can even customize the speed and looping by using the following commands
-delay 20 (Time in 100s/Frame)
-loop 0 (it negates the looping of gif, you can add and change it as needed).
Comment