Created
May 5, 2014 09:10
-
-
Save demonnico/8b3778a092150b30c3fe to your computer and use it in GitHub Desktop.
Make it easy to create all the icons we needed in iOS application.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#imagemagick is needed http://www.imagemagick.org/ | |
#reference: http://stackoverflow.com/questions/18663013/icon-file-names-ios-7 | |
convert $1 -resize 29x29 Icon-Small.png | |
convert $1 -resize 58x58 [email protected] | |
convert $1 -resize 40x40 Icon-40.png | |
convert $1 -resize 80x80 [email protected] | |
convert $1 -resize 57x57 Icon.png | |
convert $1 -resize 114x114 [email protected] | |
convert $1 -resize 120x120 [email protected] | |
convert $1 -resize 76x76 Icon-76.png | |
convert $1 -resize 152x152 [email protected] | |
echo It\'s finished. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment